[iText-questions] Problem with preClose function and exclusion hashmap

2011-10-13 Thread twain
Hi, I've already used iText to obtain signed pdf with external signature with code like this: /PdfReader pdfReader = new PdfReader("mypdf"); PdfStamper pdfStamper = PdfStamper.createSignature(pdfReader, myByteArrayOutputStream, '\0', null, true); PdfSignatureAppearance pdfSigApp

[iText-questions] HTML to PDF with XMLWorker

2011-10-13 Thread Mark Ramos
Hi, Thanks for the links Balder. I tried to render the enclosed html file to pdf and I did not get a good result. Please check the attachments. I used this code snippet: Document document = new Document(PageSize.LETTER); PdfWriter instance = PdfWriter.getInstance(document, ne

Re: [iText-questions] ligature implementation for Indian languages / Devanagari script

2011-10-13 Thread dilipvs...@hotmail.com
I would like to pick up this thread... Is there any way I could help with implementing Indian languages in iText? Is there any documentation / code that I can refer to and attempt to implement one Indian language to start with? I'll be more than happy to contribute my work to the community. Di

Re: [iText-questions] PDFReader and secured PDF

2011-10-13 Thread Leonard Rosenthol
Because 1.4 was wrong by not respecting the rights of the PDF author, so it was fixed. On 10/13/11 3:46 PM, "spr...@gmx.eu" wrote: > >> Something works as expected in one version, and doesn't in an >> older one. >> I don't see the problem, that's what bugfixes are for :) > >Well... I want to un

Re: [iText-questions] PDFReader and secured PDF

2011-10-13 Thread spring
> Something works as expected in one version, and doesn't in an > older one. > I don't see the problem, that's what bugfixes are for :) Well... I want to understand, why it works in 1.4 and no more in 2.0.5... I have no problem with the fact, that ist does not work anymore since 2.0.5. --

[iText-questions] Inserting external PDF documents

2011-10-13 Thread Hugh McLaughlin
Hello all, I am new to iTextSharp and need some help. I have an application that utilizes iTextSharp to create a PDF document from a database using tables. What I want to accomplish is that once the document is created, I then want to insert some additional existing PDF documents into this do

Re: [iText-questions] PDFReader and secured PDF

2011-10-13 Thread Alexis Pigeon
Hi spring, On 13 October 2011 16:43, wrote: > Hi, > > I have 2 secured PDF which I want to merge: > >PdfReader reader = new PdfReader(new FileInputStream("password.pdf")); >reader.consolidateNamedDestinations(); > >Document doc = new Document(reader.getPageSizeWithRotation(1)); >

[iText-questions] PDFReader and secured PDF

2011-10-13 Thread spring
Hi, I have 2 secured PDF which I want to merge: PdfReader reader = new PdfReader(new FileInputStream("password.pdf")); reader.consolidateNamedDestinations(); Document doc = new Document(reader.getPageSizeWithRotation(1)); PdfCopy w = new PdfCopy(doc, new ByteArrayOutputStream

[iText-questions] Help Required

2011-10-13 Thread Deepu Mani
Hi Jakob, My requirement is as follows:- I have two html contents as shown below 1) Type of Drink Coffee Tea Milk 2) Type of Drink Coffee Juice Milk I have to add this to a PDF Document. I have parsed with HTMLWorker.parseToList() method and added successfully to the document.

Re: [iText-questions] HTML to PDF

2011-10-13 Thread Balder VC
You should try that with the XMLWorker http://demo.itextsupport.com/xmlworker/ http://lowagie.com/xmlworker http://java.dzone.com/announcements/itext-511-%E2%80%94-xml-worker-100 http://sourceforge.net/projects/xmlworker/ On 10/13/2011 09:17 AM, Mark Ramos wrote: > Hello, > > I would like to as