Overlay watermark to all pages.

Here should go questions about transforming XML with XSLT and FOP.
Seong woong Kwon
Posts: 3
Joined: Sun Aug 31, 2014 5:08 am

Overlay watermark to all pages.

Post by Seong woong Kwon »

Hi.

I make watermark all my pdf output, by using this xsl.

Code: Select all


<fo:static-content>
<xsl:template name="insertWaterMarkImage">
<fo:block-container absolute-position="fixed" top="50mm" left="-7mm">
<fo:block>
<fo:external-graphic src="url({concat($artworkPrefix, $WaterMarkImagePath)})" xsl:use-attribute-sets="image"/>
</fo:block>
</fo:block-container>
</fo:static-content>


this works well, but it printed background of page.

But i want to overlay (meaning over the top of all content) pages.

What should I change my xsl?


Best Regards,

Seongwoong Kwon.
Radu
Posts: 9434
Joined: Fri Jul 09, 2004 5:18 pm

Re: Overlay watermark to all pages.

Post by Radu »

Hi,

I'm not sure what to tell you, maybe you should try to register and post this question on the Apache FOP users list.

Regards,
Radu
Radu Coravu
<oXygen/> XML Editor
http://www.oxygenxml.com
Post Reply