[iText-questions] new page with getdirectcontent

2011-03-14 Thread feureca leureca
Hi, When i open a pdf document like this : LibPdfDoc = new Document(Rect, LeftMargin, RightMargin, TopMargin, BottomMargin); LibWriter = PdfWriter.getInstance(LibPdfDoc, new FileOutputStream(PDFFileName));      LibPdfDoc.open();      LibContent = LibWriter.getDirectContent();

[iText-questions] Changing action of a existing submit button using iTextSharp

2011-03-14 Thread Taher Dhilawala
Hello All, I have a blank PDF created on the server. I want to populate the fields in the PDF using iTextSharp. Also, there is a "Save" button in the PDF. I want to set the action on the Save Button such as when the user clicks on Save in PDF, the PDF posts itself to an ASPX page. I am able to

[iText-questions] Append Mode and Attachments

2011-03-14 Thread Michael Marcavage
The below code works well to take attachments and add them to a PDF Fillable Form however it overrides the append mode feature, taking away the PDF to be edited in Adobe Reader, after it is created Is there a way to add attachments to a PDF Fillable Form and keep the feature of allowing Adobe

Re: [iText-questions] how to ouput the unicode right arrow?

2011-03-14 Thread Mark Storer
You have to use a font AND ENCODING that support the rightarrow. I always suggest "Identity H". BaseFont.IDENTITY_H. If a character exists in the font, Identity H will let you use it. --Mark Storer Senior Software Engineer Cardiff.com import legalese.Disclaimer; Disclaimer DisCard = null;

[iText-questions] Flattening Pencil Tool Annotations

2011-03-14 Thread jklimm
I am having an issue flattening a "Signature" in a pdf. Pencil Tool Annonations do not appear to be stamped into an iText generated stamped PDF with the following code: PdfReader reader = new PdfReader(bIn); ByteArrayOutputStream baos = new ByteArrayOutputStream(); // Create a s

[iText-questions] Antwort: iText 5.0.6

2011-03-14 Thread Benjamin Rein
Hi, since V5.0.0 the classes Table and Cell have been removed. See http://www.itextpdf.com/history/?branch=50&node=500 You've to use PdfPTable and PdfPCell instead. Have a look at the API docs to convert your existing code. Best regards Benjamin Von:Bipin Mallik An: iText-questions@

Re: [iText-questions] iText 5.0.6

2011-03-14 Thread 1T3XT BVBA
Op 14/03/2011 15:25, Bipin Mallik schreef: > Hello, > In the code we are using "com.lowagie.text.Cell" but in the new > versiond of iText 5.0.6 we couldn't find the same. So could you please > help us what should be replacing the "com.lowagie.text.Cell" in the > new version of iText. Don't use c

Re: [iText-questions] iText 5.0.6

2011-03-14 Thread Iliadis Yannis
In your last thread about iText version, Alex Pigeon already gave you the information for iText version 5. This included the licensing to AGPL and change in the package names (com.lowagie. - > com.itextpdf.) 2011/3/14 Bipin Mallik > Hello, > > In the code we are using "com.lowagie.text.Cell" but

[iText-questions] iText 5.0.6

2011-03-14 Thread Bipin Mallik
Hello, In the code we are using "com.lowagie.text.Cell" but in the new versiond of iText 5.0.6 we couldn't find the same. So could you please help us what should be replacing the "com.lowagie.text.Cell" in the new version of iText. Thanks, Bipin --

Re: [iText-questions] how to ouput the unicode right arrow?

2011-03-14 Thread 1T3XT BVBA
Op 14/03/2011 10:45, Yannic schreef: > thank you for the quick answer. > > Anyway, i'm interested in any font that could give me the rigth arrow > output. > I've tested a lot of fonts without any success so far so i you know one > that could do the trick, it will be fine for me. Isn't there an exam

Re: [iText-questions] how to ouput the unicode right arrow?

2011-03-14 Thread Yannic
thank you for the quick answer. Anyway, i'm interested in any font that could give me the rigth arrow output. I've tested a lot of fonts without any success so far so i you know one that could do the trick, it will be fine for me. thank again Yannic Le 14/03/2011 10:28, 1T3XT BVBA a écrit :

Re: [iText-questions] How to populate a Table in an existing form

2011-03-14 Thread 1T3XT BVBA
Op 10/03/2011 4:47, DonRule schreef: > I have followed the example in chapter 8 to fill out the text fields of a > template form and things are workng well. Now I want to fill out the cells > of a Table that is part of the template. AcroFields do not seem to include > the table but I am not sure ho

Re: [iText-questions] Editable, Save-able, Encrypted PDFs - Possible?

2011-03-14 Thread 1T3XT BVBA
Op 10/03/2011 22:38, dsm...@gxppartners.com schreef: > The file remains editable but no text gets merged. Am I missing something? Are you talking about an AcroForm based or an XFA based form? -- Colocation vs. Managed Host

Re: [iText-questions] Questions regarding button action fied in existing PDF

2011-03-14 Thread 1T3XT BVBA
Op 11/03/2011 13:17, Taher Dhilawala schreef: Hello All, I have a blank PDF created on the server. I want to populate the fields in the PDF using iTextSharp. Also, there is a "Save" button in the PDF. I want to set the action on the Save Button such as when the user clicks on Save in PDF, t

Re: [iText-questions] how to ouput the unicode right arrow?

2011-03-14 Thread 1T3XT BVBA
Op 14/03/2011 10:11, Yannic schreef: > i wrote some simple code (see the end of this message) and what i got is: > > the System.ouput says true so i assume that the font i'm building > contains the symbol i wanted. But the pdf file contains only the > interrogation point (see the small attached f

[iText-questions] how to ouput the unicode right arrow?

2011-03-14 Thread Yannic
Hi all, I'm using a quite old version of itext (itext-2.0.6.jar) in eclipse 3.4.2 under windows vista. The jvm i'm using is the 1.6.0_12 i'm trying to write an unicode symbol in a pdf pfile: the rightarrow that is \u2192(i even tried the \u21a6 code) i wrote some simple code (see the en