I've learned how to add a watermark to a 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">
The way I read it, the watermark has to be an image. But NoteToSelf.png needs to be text that I've read from a database.
Q: How can I add text as a watermark?
Q: If I am required to use an image for the watermark, then how do I use the ImageNew tag to create an image of text?