Hi all,
We are able to watermark the pdf using text content eg:
<?xml version="1.0" encoding="UTF-8"?>
<DDX xmlns="http://ns.adobe.com/DDX/1.0/">
<PDF result="result.pdf">
<PDF source="test.pdf"/>
<Watermark rotation="45" opacity="25%">
<StyledText><p font-size="72pt">Draft</p></StyledText>
</Watermark>
</PDF>
</DDX>
But when I try to add logos I am not able to do it, I found an example in DDX adding graphcis.
This was taken from the DDX examples.
<PDF result="doc2">
<PageContent appears="Behind" alternateText="This is highly Adobe Confidential.">
<StyledText><p><This is highly <graphic source="AdobeConfLogo.pdf"/>.</p></StyledText>
</PageContent>
<PDF source="doc1"/>
</PDF>
----------------
<graphic source="AdobeConfLogo.pdf"/>
Where should I need to place this "AdobeConfLogo.pdf" for adding in watermark.
Please advice.
Shaji