Fred Stoopendaal wrote:
Your example and other examples I could find are always based on reading and manipulating a complete page.
That's what you need: to read a complete A3 page into a PdfImportedPage.
I want 2 split a (scanned A3) single page in 2 A4 pages
You will add this complete PdfImportedPage twice on two different A4 pages. Once with offset x=0 (the right part that doesn't fit on the A4 won't be visible), once with offset x = PageSize.A4.width() (the left part of of the A3 will not be visible). Note that the content of the A3 page will be added to the PDF only once as an XObject. So you don't have to worry about file size. br, Bruno ------------------------------------------------------- Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated technology to make your job easier Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 _______________________________________________ iText-questions mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/itext-questions
