Hi,
  I'd like to know if someone knows how to add a background image while
creating a pdf with Pdfwriter; this pdf is more or less 1000 pages so it's
impossible to add to every single page the image because the pdf would be
too heavy. Is there a way to set something like a watermark only one time?
I already read the 
http://itextdocs.lowagie.com/tutorial/directcontent/index.php 
A little part of my code is:

document.open();
cb = writer.getDirectContent();
cbunder = writer.getDirectContentUnder();
img = Image.getInstance("c:\\temp\\GIORGEN.jpg");
img.setAbsolutePosition(0, 0);
cbunder.addImage(img);
.....
cb.beginText();
cb.showTextAligned(PdfContentByte.ALIGN_LEFT, line, w1, l1, 0);
cb.endText();

But I had a pdf with a first page with the image repeated 3 times and the
other pages with the only text.
Can someone help me?

Thanks

-- 
View this message in context: 
http://www.nabble.com/Background-image-%28ex-watermark%29-multiple-pages-tf4956830.html#a14194909
Sent from the iText - General mailing list archive at Nabble.com.


-------------------------------------------------------------------------
SF.Net email is sponsored by: The Future of Linux Business White Paper
from Novell.  From the desktop to the data center, Linux is going
mainstream.  Let it simplify your IT future.
http://altfarm.mediaplex.com/ad/ck/8857-50307-18918-4
_______________________________________________
iText-questions mailing list
iText-questions@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/itext-questions
Buy the iText book: http://itext.ugent.be/itext-in-action/

Reply via email to