Olivier Exbrayat wrote: > I want remove a stamp composed by text and graphic (rectange) drawing on the > overcontent with itext. The orignal pdf is composed with one tiff image on > each pages.
In this case, wouldn't it be easier to extract the TIFF images, and use those to create a new PDF document? In any case you will need to get the page dictionary of each page. This is done with the low-level PDF functionality described in chapter 18 of the book. This is a 'simple' example that shows how to do this: http://itext.ugent.be/itext-in-action/examples/chapter18/ClimbTheTree.java As you will soon find out: you will need to dig into the 'PDF Reference' or 'iText in Action' to understand what to do with the values that are returned... best regards, Bruno ------------------------------------------------------------------------- Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surveys - and earn cash http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV _______________________________________________ iText-questions mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/itext-questions Buy the iText book: http://itext.ugent.be/itext-in-action/
