Copy link to clipboard
Copied
I've got a coldfusion 8 application that populates a pdf form. I need to display a read-only version of the form to the
user. Is there a way to make the form read-only, or copy it to a read-only document?
Copy link to clipboard
Copied
Flatten the form so input fields can no longer be modified.
Copy link to clipboard
Copied
The following tag did the trick:
<cfpdf action="write" source="my.pdf"
destination="my2nd.pdf" overwrite="yes" flatten="yes">
</cfpdf>
Copy link to clipboard
Copied
How about images?
Once I flatten the resulting pdf, images don't seem to 'survive'...
Anyone?