Re: [iText-questions] PDF file size limit in iText

2013-05-06 Thread TvT
Hi, a patch for this has been submitted by WMJ http://itext-general.2136553.n4.nabble.com/Can-t-open-or-write-very-large-PDF-files-td3997140.html and was integrated into iText Version 5.2.0 http://itextpdf.com/history/?branch=52node=520 Regards, ToM 2013/5/6 naveen ks naveen...@gmail.com

Re: [iText-questions] PDF file size limit in iText

2013-05-06 Thread Paulo Soares
The limitation was lifted in 5.2.0. Paulo On Mon, May 6, 2013 at 9:41 AM, naveen ks naveen...@gmail.com wrote: Hi All, I have a requirement to process PDF files of larrge size (2GB+) and I was reading that iText 2.x had a limitation on the file size to 2GB. Can anyone let me know if this

Re: [iText-questions] PDF file size limit in iText

2013-05-06 Thread iText Info
Op 6/05/2013 10:58, TvT schreef: and was integrated into iText Version 5.2.0 http://itextpdf.com/history/?branch=52node=520 But that first implementation contains serious flaws, so all 5.2.x versions were removed from SourceForge. The problem that causes 5.2.x to fail was fixed in 5.3.0.

[iText-questions] [SPAM] Re: PDF file size limit in iText

2013-05-06 Thread mkl
Nvn, naveen ks wrote I have a requirement to process PDF files of larrge size (2GB+) and I was reading that iText 2.x had a limitation on the file size to 2GB. Can anyone let me know if this limitation still exists in iText 4.2 or 5.x As others have already answered the intrinsic limitation

Re: [iText-questions] PDF file size limit in iText

2013-05-06 Thread Nvn
My requirement is to read the 2-3GB file sequentially (in order of bookmarks), extract contents w.r.t bookmarks and create the smaller PDF based on previous result. I believe to read the large PDF, I need to use input stream as below. InputStream inputStream = new FileInputStream(INPUTFILE);

Re: [iText-questions] PDF file size limit in iText

2013-05-06 Thread iText Info
Op 6/05/2013 14:19, Nvn schreef: Please let me know if the above requirement is feasible with iText 4.2x or I will need to use iText 5.x version. In your case, it would even be better to use iText 5.4.x as it has better IO handling than the previous versions. In any case: you can't use versions

[iText-questions] data:image/bmp;base64 to pdf question

2013-05-06 Thread Anil George
Hi everyone, quick question. Does anyone know how to convert a data:image/bmp;base64 from a html page to a pdf via iText? Anil George Senior Web Developer HEALTHWORKS a division of PASSPORTHEALTH COMMUNICATIONS INC. 1265 Drummers La., Suite 202 Wayne, PA 19087 610-994-0302 610-354-0900 ext.

Re: [iText-questions] data:image/bmp;base64 to pdf question

2013-05-06 Thread Mohammed AlSayani
I use this in my website but Im getting the tiff images from DB as Byte may it help you if (memoryStream != null) { var imageFile = System.Drawing.Image.FromStream(memoryStream); var frameDimensions = new

Re: [iText-questions] data:image/bmp;base64 to pdf question

2013-05-06 Thread Anil George
Awesome! Thank you so much. I have another question though, can you do the pdfdoc.add at a particular area in the document? Anil George Senior Web Developer [cid:image001.png@01CE4A3E.0ED10450]HEALTHWORKS a division of PASSPORTHEALTH COMMUNICATIONS INC. 1265 Drummers La., Suite 202 Wayne, PA

Re: [iText-questions] data:image/bmp;base64 to pdf question

2013-05-06 Thread Mohammed AlSayani
I think there is method to do it ..Actualy I dont have much experies in Itextsharp but I m creating complex tables and I but the valus inside it the add to PdfDoc, This is an example I hope will help you Rectangle r = new Rectangle(829, 560); Document pdfDoc = new