0
私はpdf添付ファイルを作成するリンクを持っています。ウォーターマークを追加する画像をPDFに添付
<a href="filename.cfm?id=#id#" target="_blank">create pdf attachment</a>
添付されたpdfを作成します。私はpdfの中央に透かし画像を追加しますか? filename.cfmファイル
<cfsetting enablecfoutputonly="true">
<cfcontent type="application/pdf">
<cfheader name="Content-Disposition" value="attachment;filename=nameoffile.pdf">
<cfdocument format="PDF" localurl="yes"
marginTop="0.1" marginLeft="0.2" marginRight="0.2" marginBottom="0.1"
pageType="custom" pageWidth="8.5" pageHeight="10.2">
...pdf content...
</cfdocument>