We are using DDX to watermark the text on the first page of input PDF.
Issue : If the input PDF is tagged then DDX is failing while extracting the 1st page to apply the watermark.

if it is not a tagged PDF ,we are getting the expected result.
Please find the DDX command below.
DDX Command:
<DDX xmlns=""/>
<PDF result ="watermarked" return ="false" save="Full">
<PDF source = "doc1" pages ="1">
<PageRotation roatate90 = "90"/>
</PDF>
<Watermark
alternation ="None"
fitToPage ="false"
horizontalAnchor = "Left" horizontalOffset ="-10mm"
verticalAnchor = "Bottom" verticalOffset = "-10mm"
opacity = "100%"
scale = "100%"
showOnScreen = "true"
showWhenPrinting ="true"
replaceExisting ="true">
<StyledText color="black" font-family="Arial" font-size="16pt">
<p margin-bottom="0pt" margin-top="0pt" margin-right="0pt">-Elextronically Approved by </p>
</StyledText>
</Watermark>
</PDF>
<PDF result ="Result" save="Full">
<PDF source ="watermarked" pages="1">
<PageRotation rotate90="0"/>
</PDF>
<PDF source="doc1" pages = "2-last" required= "false"/>
</PDF>
</DDX>
Doubts:
- Is it possible to apply watermark on 1st page alone without extracting ? if yes , how?
- Is there any ways to delete the tags from PDF using DDX or Adobe Workbench?
- Apart from this , are they any solution can we apply to fix this issue?
And I am new to this , so Please help me out to fix this issue.
Thanks in Advance.
Suresh G