Re: [iText-questions] Finding / Removing Object from PDF

2009-01-08 Thread 1T3XT info
Claas Jäger wrote: > I have a PDF file wich, if converted that way, has an enormous size (> > 80MB). I figured out that the elements that make th PS so huge are 1.) a > pattern used on the page to simulate grey background on a certain area > and 2.) a transparent layer above that pattern. Is th

Re: [iText-questions] problem with textwrap

2009-01-08 Thread 1T3XT info
hikl wrote: > can anyone help me? As far as I can visualize the problem, it's not an iText problem, but a matter of finding an elegant programming solution. That's up to a developer using iText; that's not the job of the iText developers. -- This answer is provided by 1T3XT BVBA http://www.1t3xt.

[iText-questions] Trouble rendering HTML strings with "font-size: small"

2009-01-08 Thread Me Simple
Hi, I am facing a problem when parsing a HTML string and adding it in a RTF Table cell. I have the below sample strings. When I parse these and add them in the a RTF TableCell, they appear as dotted lines (Text with size as 1). It can be viewed only if we increase the size. Is there a way t

[iText-questions] problem with textwrap

2009-01-08 Thread hikl
hi, i'm parsing html files to generate a pdf. images will be (if wider then half page width resized to half page width and) aligned as textwrap. wenn "normal" text is followed everything works fine. but i have two problems: 1. when a new paragraph or a headline is followed i want to "clear" the t

Re: [iText-questions] getPageNumber & Reorder Problem with Sample Code

2009-01-08 Thread Dominic Maricic
Ok, that makes sense now! I have been using the book (thanks) and will definitely pick up the new version when it's released. Dominic 1T3XT info wrote: > > Dominic Maricic wrote: >> Thanks that fixed my problem! I don't understand why >> writer.reorderPages(null) would return a different numbe

Re: [iText-questions] PDF Digital Signature - PKCS#7

2009-01-08 Thread Gonçalo Almeida
Thank you Leonard for your quick answer. I will have to review my requirements. Regards 2009/1/8 Leonard Rosenthol > So what you want to do isn't possible with PDF – using iText or anything > else… > > > > The first part of your requirements is not a big deal – you can sign any > data (be it

Re: [iText-questions] Creating PDF with multilingual support

2009-01-08 Thread 1T3XT info
Gajul, Laxmikant (GE, Corporate, consultant) wrote: > Hi, > > I need to create PDF in my application however I have to support > multiple languages. Is it possible to create the pdf in languages other > than English like hindi,Chinese etc Yes: http://1t3xt.info/examples/results/in_action/chapte

[iText-questions] Creating PDF with multilingual support

2009-01-08 Thread Gajul, Laxmikant (GE, Corporate, consultant)
Hi, I need to create PDF in my application however I have to support multiple languages. Is it possible to create the pdf in languages other than English like hindi,Chinese etc... -- Check out the new SourceForge.net Mark

Re: [iText-questions] getPageNumber & Reorder Problem with Sample Code

2009-01-08 Thread 1T3XT info
Dominic Maricic wrote: > Thanks that fixed my problem! I don't understand why > writer.reorderPages(null) would return a different number than > writer.getPageNumber(). It works as long as the text isn't to the edge of > the page. Is it that the next text would get written to a new page IF it was >

[iText-questions] Finding / Removing Object from PDF

2009-01-08 Thread Claas Jäger
Hi. I have a problem converting a PDF file with GhostScript to PS format. My requirement is that the resulting PS has to have a resolution of 2400 DPI. I have a PDF file wich, if converted that way, has an enormous size (> 80MB). I figured out that the elements that make th PS so huge are 1.)

Re: [iText-questions] PDF Digital Signature - PKCS#7

2009-01-08 Thread Leonard Rosenthol
So what you want to do isn't possible with PDF - using iText or anything else... The first part of your requirements is not a big deal - you can sign any data (be it a PDF or other) all you'd like and store off the hash and the certs wherever... The problem is that for a signed PDF, you can onl

[iText-questions] PDF Digital Signature - PKCS#7

2009-01-08 Thread Gonçalo Almeida
Hello all I have a question that I couldn't manage to find in all the foruns I searched. What I want to do is to digitally sign a certain PDF (i.e. with a smartcard) and store the signature bytes and user certificate in a separete place (for instance in the file system). It will not produce a si

Re: [iText-questions] TextAsian

2009-01-08 Thread Alexis Pigeon
Hi green test, On 08/01/2009, test green wrote: > > Hi > I can't download iTextAsian.jar from official web site > Ref Page: > http://itextdocs.lowagie.com/tutorial/fonts/getting/index.php > Download Link: http://itextdocs.lowagie.com/downloads/iTextAsian.jar > Kinldy advise where can I download o

[iText-questions] TextAsian

2009-01-08 Thread test green
Hi I can't download iTextAsian.jar from official web site Ref Page:  http://itextdocs.lowagie.com/tutorial/fonts/getting/index.php Download Link: http://itextdocs.lowagie.com/downloads/iTextAsian.jar Kinldy advise where can I download official iTextAsian.jar or email to me. Thanks, green test

Re: [iText-questions] Possible anchor bug

2009-01-08 Thread Paulo Soares
That may be a bug but a viewer one. Acrobat will assume a link if the text looks like a link. You can see that by omitting extlink.setAnchor(). There's an option in Acrobat preferences to turn it off ("Automatically detect URLs from text"). Paulo From: Black, B

[iText-questions] Possible anchor bug

2009-01-08 Thread Black, Brian CTR NAVSEA
Please examine the following simplified code: Paragraph tmppara = new Paragraph(); Chunk extlink = new Chunk("https://www.displayed.url";, basicfont); extlink.setAnchor("https://www.actualurl.com?something=this";); extlink.setUnderline(.1f, -1f); t

Re: [iText-questions] getPageNumber & Reorder Problem with Sample Code

2009-01-08 Thread Dominic Maricic
Thanks that fixed my problem! I don't understand why writer.reorderPages(null) would return a different number than writer.getPageNumber(). It works as long as the text isn't to the edge of the page. Is it that the next text would get written to a new page IF it was added and so getPageNumber() ha