Re: [iText-questions] Hiding an image until printing

2005-03-02 Thread Paulo Soares
It's just a matter of creating that button in Acrobat and then doing the same with a PdfFormField. - Original Message - From: "Jason Millard" <[EMAIL PROTECTED]> To: Sent: Wednesday, March 02, 2005 6:41 PM Subject: [iText-questions] Hiding an image until printing > Hello. > > I am tryi

[iText-questions] Hiding an image until printing

2005-03-02 Thread Jason Millard
Hello. I am trying to generate a PDF document where I would like to hide an image and have it only show when printed. I've tried using Image and Button Acrofields because they have a display when printed visibility property. However, I have not been able to use iText or PDF Javascript to dynam

RE: [iText-questions] Printing takes 5 times longer when using a PdfTransparencyGroup

2005-03-02 Thread Paulo Soares
Whenever you enter the transparency/opacity realm everything slows down and looks different. It doesn't matter if the PDF was created with iText or something else. If you just want to put a background in a PDF you don't need opacity, use PdfStamper. > -Original Message- > From: [EMAIL PRO

Re: [iText-questions] Printing takes 5 times longer when using a PdfTransparencyGroup

2005-03-02 Thread Leonard Rosenthol
At 12:09 PM 3/2/2005, Ruud Huynen wrote: gs.setBlendMode(PdfGState.BM_MULTIPLY); cb.setGState(gs); PdfTransparencyGroup group = new PdfTransparencyGroup(); pageBG.setGroup(group); You are creating a VERY complex transparency situation, which (for some printe

[iText-questions] Printing takes 5 times longer when using a PdfTransparencyGroup

2005-03-02 Thread Ruud Huynen
Hello We have a document archive keeping documents and background-formulars seperate. On the fly a document is merged with its background (PDF containing a TIFF (non-transparent) or text). Here is an excerpt of my program, showing the fast printing OPTION 1 (1 page=30 seconds) and the desired, bu

RE: [iText-questions] pdfx1a with barcode

2005-03-02 Thread Paulo Soares
All the pdfx standard require embedded fonts. You can use any font but it must be embedded. > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On > Behalf Of Thomas Kübler > Sent: Wednesday, March 02, 2005 2:43 PM > To: itext-questions@lists.sourceforge.net > Su

[iText-questions] RE: Hungarian form fields

2005-03-02 Thread Paulo Soares
That's what I feared. You have a CIDFontType2 and iText currently only supports single byte fonts. I'll add support for it but I don't know when. > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] > Sent: Wednesday, March 02, 2005 6:09 PM > To: Paulo Soares > Subjec

RE: [iText-questions] outputIntent

2005-03-02 Thread Paulo Soares
Works for me. Send me your code and profile so that I can reproduce the problem. > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On > Behalf Of Thomas Kübler > Sent: Tuesday, March 01, 2005 1:28 PM > To: itext-questions@lists.sourceforge.net > Subject: [iText

Re: [iText-questions] PDF Printing Problems Related to Images

2005-03-02 Thread Paulo Soares
If it prints correctly as image then the problem is with your printer driver. - Original Message - From: "Jerold Sampson" <[EMAIL PROTECTED]> To: Sent: Tuesday, March 01, 2005 10:23 PM Subject: [iText-questions] PDF Printing Problems Related to Images > I am having problems printing PD

[iText-questions] checkbox + Fdf

2005-03-02 Thread Olivier Barbecot
Hi, How to toggle a checkbox on using fdfmerge ? Thanks a lot -- -- Olivier Barbecot --- SF email is sponsored by - The IT Product Guide Read honest & candid reviews on hundreds of IT Products from real users. Di

RE: [iText-questions] Hungarian form fields

2005-03-02 Thread Paulo Soares
Show me the pdf. > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On > Behalf Of [EMAIL PROTECTED] > Sent: Wednesday, March 02, 2005 4:21 PM > To: itext-questions@lists.sourceforge.net > Subject: [iText-questions] Hungarian form fields > > Hi List, > > I have

RE: [iText-questions] set leading

2005-03-02 Thread Paulo Soares
That's the way it works. If you need different leadings use more than one Paragraph. > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On > Behalf Of Mike Watson > Sent: Tuesday, March 01, 2005 9:45 PM > To: itext-questions@lists.sourceforge.net > Subject: [iTex

RE: [iText-questions] Filling Acrofields without new copy

2005-03-02 Thread Paulo Soares
You always need a copy or partial copy even if you don't see it as in the Acrobat case. Create the copy pdf in memory and after is finished overwrite the original. > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On > Behalf Of rodrigon > Sent: Wednesday, March

Re: [iText-questions] RE: Extraction of Images

2005-03-02 Thread Leonard Rosenthol
At 02:24 PM 3/1/2005, Paulo Soares wrote: Try pdfbox or something else. iText can't do it. I would recommend JPEDAL (http://www.jpedal.org) as it does this already. Leonard --- Leonard Rosenthol

Re: [iText-questions] Insert a tab character in a chunk/paragraph, etc.

2005-03-02 Thread Paulo Soares
Tabs are not supported. - Original Message - From: "Chase, Jodi" <[EMAIL PROTECTED]> To: Sent: Tuesday, March 01, 2005 7:58 PM Subject: [iText-questions] Insert a tab character in a chunk/paragraph, etc. > Hello - > > > > I know that you can insert a new line by using the "\n" characte

[iText-questions] pdfx1a with barcode

2005-03-02 Thread Thomas Kübler
hallo, i will setup pdfx1a standard with barcodes. when i produce the pdf, i get an error, that all fonts have to embedded. this is true, but when i use BaseFont bf = BaseFont.createFont( BaseFont.HELVETICA , BaseFont.CP1252 , BaseFont.EMBEDDED ); code128.setFont( bf ); i get the error < All th

RE: [iText-questions] PdfPCell noWrap question

2005-03-02 Thread Paulo Soares
> -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On > Behalf Of Weseloh, Markus > Sent: Wednesday, March 02, 2005 7:50 AM > To: 'itext-questions@lists.sourceforge.net' > Subject: [iText-questions] PdfPCell noWrap question > > Hello, > > I have a question con

Re: [iText-questions] Getting started in C# with iText.Net

2005-03-02 Thread Paulo Soares
See http://www.ujihara.jp/iTextdotNET/en/. It has many examples in C#. --- Chris Laforet <[EMAIL PROTECTED]> wrote: > Could someone out there point me in the direction of > how to use itext.net in > a c# project? I have recently had to cross-train in > C# and am not > completely familiar with it

RE: [iText-questions] Need help with existing PDF replace Image

2005-03-02 Thread Paulo Soares
It may or may not be possible. Show us the pdf. > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On > Behalf Of garettDaBland > Sent: Wednesday, March 02, 2005 2:28 AM > To: itext-questions@lists.sourceforge.net > Subject: [iText-questions] Need help with exist

[iText-questions] Hungarian form fields

2005-03-02 Thread [EMAIL PROTECTED]
Hi List, I have a problem with iText. Can you help me? I have a PDF file with some read-only form fields. I use embedded font arial with Central Europan encoding. I maked this pdf in Adobe Acrobat 6.0 CE. I fill up these fields in Acrobat with some Hungarian text. When I use the form.getField() met

[iText-questions] Filling Acrofields without new copy

2005-03-02 Thread rodrigon
Hi, I have a question about filling acrofields. I need to fill an Acroform, but using the same PDF. I cannot create a new one. Is it possible ? I'm trying to use PdfStamper, but I dont know how to use the same document as Reader and Writer. Thanks a lot for your help. ---

[iText-questions] set leading

2005-03-02 Thread Mike Watson
Hi, I am having difficulties adding phrases to a paragraph where each phrase has a different leading. That is, it seems to only obey the paragraph leading, and not the phrase leadings inside. Is this a known problem? Any workarounds? thx -m -

[iText-questions] Getting started in C# with iText.Net

2005-03-02 Thread Chris Laforet
Could someone out there point me in the direction of how to use itext.net in a c# project? I have recently had to cross-train in C# and am not completely familiar with it. I can get the OLD itextsharp working but that project is almost 2 years since it has been worked on. It is a shame that ther

Re: [iText-questions] set leading

2005-03-02 Thread Nederhof M.J.
My 2 cents. Last week Paulo advised me to use ColumnText, because setFirstLineIndent wouldn't work otherwise. So, instead of adding Paragraphs to a document, I now add (addElement) them to a ColumnText. Since then I noticed that a whole lot of other things started to work that didn't before. One

Re: [iText-questions] RE: Extraction of Images

2005-03-02 Thread Paulo Soares
Try pdfbox or something else. iText can't do it. - Original Message - From: "Ravi Sittambalam" <[EMAIL PROTECTED]> To: Sent: Tuesday, March 01, 2005 4:12 PM Subject: [iText-questions] RE: Extraction of Images Hi I'm sorry to bother you I just wanted to say that iText is a really usefu

RE: [iText-questions] Insert a tab character in a chunk/paragraph, etc.

2005-03-02 Thread Paulo Soares
Tabs are not supported. > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On > Behalf Of Chase, Jodi > Sent: Tuesday, March 01, 2005 7:59 PM > To: itext-questions@lists.sourceforge.net > Subject: [iText-questions] Insert a tab character in a > chunk/paragraph, e