• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
0

DDX PDF Dynamic Watermarking

Guest
Mar 11, 2009 Mar 11, 2009

Copy link to clipboard

Copied

Hihi
I understand that DDX can watermark PDF documents using a string of static text but i am searching for a solution to implement dynamic watermarking on an existing PDF. Any idea how to approach this? beside using iTEXT?
Thanks!
TOPICS
Advanced techniques

Views

650

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
LEGEND ,
Mar 11, 2009 Mar 11, 2009

Copy link to clipboard

Copied

meowo wrote:
> Hihi
> I understand that DDX can watermark PDF documents using a string of static
> text but i am searching for a solution to implement dynamic watermarking on an
> existing PDF.

What do you mean by "dynamic watermarking" ?

--
Mack

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Valorous Hero ,
Mar 11, 2009 Mar 11, 2009

Copy link to clipboard

Copied

> I understand that DDX can watermark PDF documents using a string of static text ...
> i am searching for a solution to implement dynamic watermarking

Yes, the question is not clear to me either. You can generate DDX dynamically, so by extension the text can be dynamic. Is that what you are asking?

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Guest
Mar 11, 2009 Mar 11, 2009

Copy link to clipboard

Copied

sorry that my question is not clear.
ok i have this ddx and cfm file, my question is how can watermark the downloader name dynamically on the generated pdf? How do i pass a variable from cfm to ddx in my case?

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Valorous Hero ,
Mar 11, 2009 Mar 11, 2009

Copy link to clipboard

Copied

LATEST
The "ddxFile" value does not have to be a physical file. It can also be a variable containing a ddx string. You can use cfsavecontent to construct your ddx string. Using whatever variables you need. Then pass that variable to cfpdf:

<cfsavecontent variable="ddxString">
<?xml version="1.0" encoding="UTF-8"?>
<DDX ....>
... etcetera ...
</DDX>
</cfsavecontent>

<cfif IsDDX(ddxString)>
....
<cfpdf action="processDDX"
ddxFile="#ddxString#"
....>
</cfif>

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Resources
Documentation