Hey,
I use itextsharp.dll v.5.1.0.0 i and i have problem with some pdf documents
to save last page in other file. I have the exception *Attempted to read
past the end of the stream.*
Please help me.


There is code:
            PdfReader reader = new PdfReader(FakturaZbiorcza);

            Rectangle size = reader.GetPageSizeWithRotation(1);
            Document document = new Document(size);

            PdfWriter writer = PdfWriter.GetInstance(document, new
FileStream("c:\\Test.pdf", FileMode.Create, FileAccess.Write));
            document.Open();


            PdfContentByte cb = writer.DirectContent;
            document.NewPage();
            PdfImportedPage page = writer.GetImportedPage(reader, 23);
            cb.AddTemplate(page, 0, 0);


            document.Close(); //*ERROR*
------------------------------------------------------------------------------
What Every C/C++ and Fortran developer Should Know!
Read this article and learn how Intel has extended the reach of its 
next-generation tools to help Windows* and Linux* C/C++ and Fortran 
developers boost performance applications - including clusters. 
http://p.sf.net/sfu/intel-dev2devmay
_______________________________________________
iText-questions mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/itext-questions

iText(R) is a registered trademark of 1T3XT BVBA.
Many questions posted to this list can (and will) be answered with a reference 
to the iText book: http://www.itextpdf.com/book/
Please check the keywords list before you ask for examples: 
http://itextpdf.com/themes/keywords.php

Reply via email to