ColdFusion 8.0.1 - Easier to add PDF Watermarks
ColdFusion 8.0.1 makes it much easier to add watermarks to PDF documents. In the past you had to either use an image or another PDF, but now you can simply pass in text. You can even pass in styled text. Here is a simple example.
First we generate a PDF dynamically.
<cfdocument format="pdf" name="mypdf">
<cfloop index="x" from="1" to="9">
<p>
Lorem impsum delorem battlestar galactica begins tonight and it kicks butt.
Lorem impsum delorem battlestar galactica begins tonight and it kicks butt.
Lorem impsum delorem battlestar galactica begins tonight and it kicks butt.
Lorem impsum delorem battlestar galactica begins tonight and it kicks butt.
</p>
</cfloop>
</cfdocument>
Now let's add the watermark:
<cfpdf action="addWatermark" text="<b>TOP SECRET!</b>" source="mypdf" foreground="true">
The foreground attribute is critical for PDFs made with cfdocument. If you don't use it - your watermark will be behind the text.
Now I can serve the PDF to the user:
<cfheader name="content-disposition" value="attachment; filename=""test.pdf"""/>
<cfcontent type="application/pdf" variable="#toBinary(mypdf)#">
Note the toBinary thing. This is an bug that was not fixed in CF8. Even though "mypdf" is a PDF document, when I performed the addWatermark action, I converted what was pure binary data into a PDF object recognized by ColdFusion. If I had used destinaiton= in the cfpdf tag, it would have worked fine, but I wanted to serve the document directly to the user, so I had to wrap it with toBinary.
Anyway - even with that little hitch at the end, it's far easier now to add watermarks to PDFs!
Comments
One question though, the whole cfheader thing, is that file "test.pdf" an actual file placeholder that I should place in my webroot?
I've been using the following to show PDF's:
<cfcontent type="application/pdf">
<cfoutput>#pdfContent#</cfoutput>
Which works great in al browsers on windows, and mac safari is fine, but in mac firefox for some reason it will actually try to kick off a download?
I've been looking for a solution for some time now, and thought I'd try your code from the example above, but was a little confused about the whole "test.pdf" thing.
Thanks again Ray.
Just call up and say "I want to order a fracking pizza." They will ask "How long has Starbuck been gone?" and you say "Just over two months."
Yes, I know you think it's a prank.


I wasn't aware of the toBinary() method.