Re: [iText-questions] How to add an image using an AcroField as aplaceholder:

2006-07-27 Thread Paulo Soares
That's already corrected in the CVS. Paulo - Original Message - From: "noel fernandes" <[EMAIL PROTECTED]> To: Sent: Thursday, July 27, 2006 7:47 AM Subject: [iText-questions] How to add an image using an AcroField as aplaceholder: hello Bruno I am trying to place an image at the pl

Re: [iText-questions] Tiff file problem

2006-07-27 Thread Paulo Soares
> -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On > Behalf Of [EMAIL PROTECTED] > Sent: Wednesday, July 26, 2006 4:42 PM > To: itext-questions@lists.sourceforge.net > Subject: [iText-questions] Tiff file problem > > > If the following statement fails due t

[iText-questions] How to add an image using an AcroField as a placeholder:

2006-07-27 Thread noel fernandes
hello Bruno I am trying to place an image at the placeholder position with itextsharp lîbrary but i have been unsuccessful.I have tried code given by you but it's not working. Can you help me ? thank you This is the code that i have written " PdfStamper stamper = new PdfStamper(reader, new File

Re: [iText-questions] TeX-style line breaking

2006-07-27 Thread Paulo Soares
> -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On > Behalf Of Peter B. West > Sent: Wednesday, July 26, 2006 10:59 PM > To: Post all your questions about iText here > Subject: [iText-questions] TeX-style line breaking > > Bruno, Paulo, > > I've done an imp

[iText-questions] PdfWriter.reorderPages failure

2006-07-27 Thread Scott Tomer
I am trying to reorder the pages in a PDF document after adding some extra pages. The following code fails saying that the integer array must be the same size as the number of pages in the document. When I step into the code, I see that it believes that the number of pages in the PdfWriter is 0

[iText-questions] PdfPTable - setSkipFirstHeader(boolean) has no effect

2006-07-27 Thread Bennett, Matthew
I noticed that the setSkipFirstHeader(boolean) method on PdfPTable has no effect. The first header row(s) are still displayed. Am I understanding the purpose of this method correctly? If I am not, please let me know. Below is a test program to demonstrate. import java.io.FileOutputStream; i

Re: [iText-questions] Replacing Acrofield with Image Issue

2006-07-27 Thread Paulo Soares
The field positions are relative to the unrotated page. If your PDF is rotated, as in this case, you'll have to rotate the field coordinates. I think that this rotation should be provided by the library, I'll have a look. Paulo > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EM

[iText-questions] why Rtf file so big ?

2006-07-27 Thread Bhupat Raigaga
Hi, I see size of the Rtf file quite big compared to PDF. Is there any way to reduce/optimize file size. In my case PDF doc (135KB) and the RTF doc (25,103KB)? Thanks Bhupat - Take Surveys. Earn Cash. Influence

Re: [iText-questions] why Rtf file so big ?

2006-07-27 Thread Mark Hall
On Wednesday 26 July 2006 19:41, Bhupat Raigaga wrote: > I see size of the Rtf file quite big compared to PDF. Is there any way to > reduce/optimize file size. In my case PDF doc (135KB) and the RTF doc > (25,103KB)? Because RTF ist a text-based format and text-based formats tend to be larger tha

Re: [iText-questions] RTF Chapters/Subchapters

2006-07-27 Thread Alin Popa
Thanks guys, but I got the idea.(Section sec=chapter.addSection(new Paragraph()));On 7/27/06, Alin Popa < [EMAIL PROTECTED]> wrote:Hi guys,I have one problem regarding creation of Chapters and Subchapters. Using iText there is possible to do this kind of structure ? I mean, for example:Chapter

Re: [iText-questions] RTF Chapters/Subchapters

2006-07-27 Thread [EMAIL PROTECTED]
Alin, Change the line with the addSection() to: Section section = chap.addSection(new Paragraph("Sub testing")); the use section.addSection(...). Dave On Thu, 27 Jul 2006 13:05:25 +0200, Alin Popa wrote > Hi guys, > > I have one problem regarding creation of Chapters and Subchapters. > Using

Re: [iText-questions] Page rotation and rearrangement (4 in 1) at thesame time

2006-07-27 Thread Werner Lehmann
Mark, thanks for the effort you put into your reply. I appreciate it. On 25.07.2006 21:03, Mark Storer wrote: > Anyway, there are several ways to work around this. > > 1) Dig around in the source for a place where you can change the page's > dictionary and have it 'take'. This may include cr

[iText-questions] iText contributors

2006-07-27 Thread bruno
Hello all, I have been given the assignment to make an inventory of all the people who have contributed code to iText. In return I am getting time and a dedicated server (you already know this server: http://itext.ugent.be/ ). This is a sample of what is expected from me: http://itext.ugent.be

[iText-questions] RTF Chapters/Subchapters

2006-07-27 Thread Alin Popa
Hi guys,I have one problem regarding creation of Chapters and Subchapters.Using iText there is possible to do this kind of structure ? I mean, for example:Chapter chap=new Chapter("testing",1); chap.addSection(new Paragraph("Sub testing"));document.add(chap);After that I'll have something like that