Re: [iText-questions] Reuse the same file multiple time...

2009-12-02 Thread Xavier Sudan
8859-1; format=flowed Xavier Sudan wrote: > Hello, > > I am unable to split a PDF (with IText) and after getting the content > (with IText)... Throw away your code and split your PDF with PdfReader.selectPages() and PdfStamper! -- This answer is provided by 1T3XT BVBA http://www.1t3xt

Re: [iText-questions] Reuse the same file multiple time...

2009-12-02 Thread Xavier Sudan
Pages(); i++) { content += extractor.getTextFromPage(i + 1); } return content; } catch (Exception e) { e.printStackTrace(); } return null; } } ---

Re: [iText-questions] ExportArea - All data content is exported (not just the area)

2009-11-19 Thread Xavier Sudan
mples/src/questions/importpages/ExportArea.java). Thanks. 2009/11/18 Xavier Sudan > Thank you Paulo. > > What is your advise to get the data inside the area ? > > Xavier > > >>You'll have to ask the data extraction software why they don't respect > the

Re: [iText-questions] ExportArea - All data content is exported (not just the area)

2009-11-18 Thread Xavier Sudan
Thank you Paulo. What is your advise to get the data inside the area ? Xavier >>You'll have to ask the data extraction software why they don't respect the crop box. Paulo -- Let Crystal Reports handle the reporting - Fr

[iText-questions] ExportArea - All data content is exported (not just the area)

2009-11-18 Thread Xavier Sudan
Hello, I would like to get content in specific area in a PDF. For that, I use ExportArea (http://1t3xt.info/examples/browse/?page=example&id=351)to generate a new PDF with the area and use PDFbox to get the content in text. Us

Re: [iText-questions] Reuse the same file multiple time...

2009-08-10 Thread Xavier Sudan
Hello, Has someone try the code below ? Get the same result ? Thanks :-) 2009/8/4 Xavier Sudan > Thank you people behind i...@1t3xt.info :) > > There is an application reproducing the problem... I hope that someone > could find the source of the problem. This arrived with differen

Re: [iText-questions] Reuse the same file multiple time...

2009-08-04 Thread Xavier Sudan
Doc != null) cosDoc.close(); if (pdDoc != null) pdDoc.close(); } catch (Exception e1) { e1.printStackTrace(); } } return null; } } --- 2009/8/4 1T3XT info > Xavier Su

Re: [iText-questions] Reuse the same file multiple time...

2009-08-04 Thread Xavier Sudan
mailing list. > > Paulo > > ----- Original Message - > From: "Xavier Sudan" > To: > Sent: Tuesday, August 04, 2009 1:44 PM > Subject: [iText-questions] Reuse the same file multiple time... > > > Hello, > > I would like to take one file, create with

[iText-questions] Reuse the same file multiple time...

2009-08-04 Thread Xavier Sudan
Hello, I would like to take one file, create with his contains another, and another and another... (multiple time, for example to get a file, and make two, after make four, ...). My problem is that after the creation of two files, the last is unreadable and I don't know what I do wrong... For my