Re: [iText-questions] possible bug in PdfReader for encrypted pfds

2009-08-04 Thread Paulo Soares
Now you have a PDF encryption cracker and the possibility that Adobe lawyers will be knocking at your door asking why you produced such circumvention device. It's illegal what you've done. Paulo - Original Message - From: To: Sent: Wednesday, August 05, 2009 1:37 AM Subject: [iText-q

[iText-questions] possible bug in PdfReader for encrypted pfds

2009-08-04 Thread amahmood
I am using iText library to fill in pdf forms. Some time my I get forms that are treated encrypted by iText and throws exception "PdfReader not opened with owner password". I reviewed the code and found that PdfReader turns on encrypted flag at this place. PdfObject encDic = trailer.get(PdfN

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

2009-08-04 Thread 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 different PDF source (printed with pdfFractory, OpenOffice, ...) for the original PDF (will be PDF_A). *To use this application

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

2009-08-04 Thread 1T3XT info
Xavier Sudan wrote: > I think that this creation of PDF do something wrong and I need your > help to resolve it. The problem is that you don't help us help you. Reading your code, we have no clue. You MUST send us a small standalone example reproducing the problem. Otherwise, it's just as if yo

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

2009-08-04 Thread Xavier Sudan
Thank your Paulo for your reply. I can read all PDF with PDFBOX (and the code below). But I can read a PDF which has been treat more 2 times by iText (and the code below). I think that this creation of PDF do something wrong and I need your help to resolve it. (I also will try other tools to read

Re: [iText-questions] FW: An Error with iText and JumpPrinterModificated

2009-08-04 Thread Paulo Soares
I don't see iText anywhere. Paulo - Original Message - From: "David Martínez Ros" To: "iText" Sent: Tuesday, August 04, 2009 11:08 AM Subject: [iText-questions] FW: An Error with iText and JumpPrinterModificated Hi, I have a printing error. When I want to print a MapPanel in a Swin

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

2009-08-04 Thread Paulo Soares
So your problem is with PDFBox that can't read the text? You're in the wrong 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

[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

Re: [iText-questions] bytearrayoutputstream to rtf

2009-08-04 Thread Stephan Trautmann
1T3XT info wrote: > But you only generated the bytes of a PDF file. You need a PDF to RTF > convertor to server RTF. Due to the nature of PDF, it will be hard to > find software that allows you to do that. > That's... the reason why you didn't get an answer earlier. Usually > people don't ac

Re: [iText-questions] bytearrayoutputstream to rtf

2009-08-04 Thread 1T3XT info
Stephan Trautmann wrote: > Hello, > > I have created a pdf and saved it temporaily to memory into a > bytearrayoutputstream. This means that you have bytes like: byte[] = { '%', 'P', 'D', 'F', '-', '1', '.', '4',... } > Now That byte stream is a PDF file; it contains PDF syntax. > I woul

[iText-questions] bytearrayoutputstream to rtf

2009-08-04 Thread Stephan Trautmann
Hello, I have created a pdf and saved it temporaily to memory into a bytearrayoutputstream. Now I would to like to output this stream into a rtf file Maybe you ask yourself now, "why the hell doesn't he directly output into a document having a rtfwriter instance"... well.. I have cre