2

PDFに透かしを追加する方法を学びました。

<cfpdf action="addwatermark" image="NoteToSelf.png" 
    pages="1" 
    position="0,0" 
    showOnPrint="no"
    source="my.pdf" 
    destination="#myDir#\new.pdf" 
    overwrite="yes"
    opacity="10">

私の読み方では、透かしは画像でなければなりません。ただし、NoteToSelf.pngは、データベースから読み取ったテキストである必要があります。

Q:透かしとしてテキストを追加するにはどうすればよいですか?

Q:透かしに画像を使用する必要がある場合、ImageNewタグを使用してテキストの画像を作成するにはどうすればよいですか?

4

1 に答える 1

6

ColdFusion 8.0.1 onwards you can supply text directly to the cfpdf tag:

<cfpdf action="addwatermark" position="10,10" text="I am the watermakr" source="pdfContent" rotation="90" foreground="yes">

If you are not on on 8.0.1 then you would need to use imageNew and the image write text functions and pass that in.

于 2010-06-25T15:37:34.240 に答える