Re: [iText-questions] ColumnText setSimpleColumn with getFieldPositions()

2010-03-27 Thread pickm
No, I did not write a rectangle to test my original assertion. I have now gone back and I drew a rectangle. It appears to be correct. Here is the test code i used: PdfContentByte c = stamper.getOverContent(1); Rectangle r = new Rectangle(fieldPositionsStatement

Re: [iText-questions] '>' not expected at file pointer 23512

2010-03-27 Thread Leonard Rosenthol
Yes, that would mean fixing the content stream parser used by PdfTextExtractor. From: Pamela Bondi [mailto:pamelabo...@siwebsrl.com] Sent: Friday, March 26, 2010 7:32 AM To: itext-questions@lists.sourceforge.net Subject: Re: [iText-questions] '>' not expected at file pointer 23512 I did not know

Re: [iText-questions] Difference between WINANSI and IDENTITY-H encoding types

2010-03-27 Thread Leonard Rosenthol
Correct - if you want to do anything other than English, you MUST use Identity-H and embed the font. -Original Message- From: dorairaj [mailto:dorai...@clinapps.com] Sent: Friday, March 26, 2010 11:53 AM To: itext-questions@lists.sourceforge.net Subject: [iText-questions] Difference betw

Re: [iText-questions] ColumnText setSimpleColumn with getFieldPositions()

2010-03-27 Thread 1T3XT info
pickm wrote: > So my problem is that when i call |setSimpleColumn|, I need to expand > the column text with arbitrary values for some reason. How do you know this? Did you draw a rectangle using the coordinates returned by getFieldPositions? Does it appear at the correct place? -- This answer i

Re: [iText-questions] HTML usage of SimpleTable without cell borders?

2010-03-27 Thread 1T3XT info
David Hoffer wrote: > Using version 2.1.7, I'm trying to use SimpleTable to create a report > that will work for HTML as well as PDF. SimpleTable was removed form iText 5 and is no longer supported. Use PdfPTable instead. -- This answer is provided by 1T3XT BVBA http://www.1t3xt.com/ - http://ww

Re: [iText-questions] JPanel in PDF

2010-03-27 Thread 1T3XT info
Michael Harig wrote: > Hi, > > I want to print a JPanel in a PDF document. > Structure will be: a title, some arbitrary text, the JPanel, some > tables, more arbitrary text. > > The examples I found that print images use either a PDFContentByte or > are some HTML, XML processing stuff using IText

Re: [iText-questions] pdf graphics file questions

2010-03-27 Thread 1T3XT info
Brigit Ananya wrote: > How can I read the array of > CubicCurve2D.Double"s and the stroke and fill informations > from a pdf graphics file of curves? With PRTokeniser, BUT you'll also have to take the transformations into account, so you're in to a lot of programming work. The best way to achiev

Re: [iText-questions] iText and PDF/A-1b

2010-03-27 Thread 1T3XT info
Alexander Lohse wrote: > Hello, > > I have to generate a PDF from several PDF-Pages with FormFields. These > PDF-Pages are correct PDF/A-1b. I fill these Formfields and merge the > PDF-Pages together. But when I check this generated PDF with pdfaPilot2 > from callas there are 2 errors. The firs

Re: [iText-questions] itextsharp-flatten xfa filled document not working

2010-03-27 Thread 1T3XT info
Julian2 wrote: > I need to cancel edition by user when opening the PDF document. I tried > FormFlattening=true but when i do it, all AcroFields in my document appear > empty. What am i doing wrong??? Thanks even for reading this. In the subject you talk about XFA. In this message you talk about Ac

Re: [iText-questions] pdf graphics file questions

2010-03-27 Thread 1T3XT info
Brigit Ananya wrote: > Hi, > > (I sent this post on 3/22, but it seems it never got out.) > > Thanks! I hope I will find the information about AICB. > > Well, I am still a total beginner. So what are the content > parser classes? PRTokeniser and everything in com.itextpdf.text.pdf.parser.* > I

Re: [iText-questions] Difference between WINANSI and IDENTITY-H encoding types

2010-03-27 Thread 1T3XT info
dorairaj wrote: > Can any one suggest me what is the difference between the Ansi and > Indentity-H encoding types? Please read the book: http://itextpdf.com/book/ It's all explained there in several pages. This mail would get too long to explain it here. -- This answer is provided by 1T3XT BVBA h

[iText-questions] PdfReader.MakeRemoteNamedDestinationsLocal()

2010-03-27 Thread Keith O
Hi, Going through the iText in Action - 2nd Edition examples using iTextSharp 5.0.0. part2.chapter07.LinkActions: http://itextpdf.com/examples/index.php?page=example&id=131 creates a PdfAction (no named destination?) of Subtype GoToR: page1.setAction(new PdfAction("movie_links_1.pdf", 1)); Th

[iText-questions] HTML usage of SimpleTable without cell borders?

2010-03-27 Thread David Hoffer
Using version 2.1.7, I'm trying to use SimpleTable to create a report that will work for HTML as well as PDF. Calling cell.setBorder(SimpleCell.NO_BORDER) works great to turn off the cell border in the PDF but the HTML always has the border. Is there a trick to turn off the cell border in HTML?