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

2010-03-29 Thread pickm
That fixes it. Thanks! I got widthPercentage (the table) confused with widthPercentages (the columns)... I assumed they were the same thing. -- View this message in context: http://old.nabble.com/ColumnText-setSimpleColumn-with-getFieldPositions%28%29-tp28042812p28069575.html Sent from the i

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

2010-03-27 Thread pickm
PdfPTable had margins on both sides. So... we have eliminated my suggestion that the coordinate positions are the problem. Any idea why i put a PdfPTable into the ColumnText and have wide margins so that i am required to stretch the table? 1T3XT info wrote: > > pickm wrote: >> So m

[iText-questions] ColumnText setSimpleColumn with getFieldPositions()

2010-03-26 Thread pickm
I am having an issue where I am stamping a PDF template. Here is my setup: I have a PdfStamper and a template with a bunch of form fields on it. I am using some of the form fields as placeholders for PdfPTables that I create in java. So I get my place holder dimensions like this: float []

Re: [iText-questions] concatenated files coming up as multiple packages?

2009-06-17 Thread pickm
Is there a method that checks if a pdf has a package, or is a package? I think the easiest thing to do is check for a package simply not concatenate when one is present. I'll handle it some other way. -- View this message in context: http://www.nabble.com/concatenated-files-coming-up-as-mult

Re: [iText-questions] generate rtf file

2009-06-16 Thread pickm
Is it possible to use memory management techniques when writing RTFs, like is mentioned in section 6.1.5 ("Working with Large Tables") of the iText book? Can the larger components be broken up and written incrementally? Ana Heitor-2 wrote: > > > I forced to write the file to disk > >

Re: [iText-questions] concatenated files coming up as multiple packages?

2009-06-16 Thread pickm
enate) on the fly to a package and attach it to the original file? Thanks! 1T3XT info wrote: > > pickm wrote: >> Any ideas on what happened? > > I'm sorry, but first I have to see it happening, > otherwise I don't believe you. > -- > This answer is pr

[iText-questions] concatenated files coming up as multiple packages?

2009-06-12 Thread pickm
I have been using iText for a while now, and all of a sudden i have PDFs coming up in Adobe Reader showing the first page, and instead of the next pages (the concatenated pages), i get a grey box that says "Multiple files are bound together in this PDF Package." I searched the forum and i see iTe

Re: [iText-questions] Form letter body text -- Span pages?

2009-03-03 Thread pickm
ut nothing made it to the page. 1T3XT info wrote: > > pickm wrote: >> Is it possible to do something like this > > Have a look at this: http://tinyurl.com/dfbole > It's a solution to a similar problem. > -- > This answer is provided by 1T3XT BVBA >

Re: [iText-questions] Form letter body text -- Span pages?

2009-03-03 Thread pickm
ave in the template doc. Or is it better to rearrange and use a document with document.newPage? 1T3XT info wrote: > > pickm wrote: >> I have a form letter that has body text that will not fit on a single >> page. >> I would like the text to start on the first page, and sp

Re: [iText-questions] HTMLWorker tables and fonts

2009-03-02 Thread pickm
not parse HTML",e); } } Thanks! Paulo Soares-3 wrote: > > You'll to change the font in the Chunk. > > Paulo > >> -Original Message- >> From: pickm [mailto:picke...@hotmail.com] >> Sent: Monday, March 02, 2009 1:51 PM &

Re: [iText-questions] HTMLWorker tables and fonts

2009-03-02 Thread pickm
that I missed related to this? Thanks! pickm wrote: > > I have a tried a couple different things, and I didn't find anything > specific in the mailing list. > > I am parsing HTML text into a PDF and I want to change all fonts to be the > same. for most elements co

[iText-questions] Form letter body text -- Span pages?

2009-02-26 Thread pickm
I have a form letter that has body text that will not fit on a single page. I would like the text to start on the first page, and span to the second page if needed. Is there a way to do this using AcroFields? Right now I am populating a form field, which is very simple. >From reading through

[iText-questions] HTMLWorker tables and fonts

2009-02-26 Thread pickm
I have a tried a couple different things, and I didn't find anything specific in the mailing list. I am parsing HTML text into a PDF and I want to change all fonts to be the same. for most elements coming from HTMLWorker, I simply iterate through the Chunks and chunk.getFont().setFamily(FontFac

Re: [iText-questions] Problem with Chunk underline

2009-02-03 Thread pickm
Thanks! Here is the bug tracker: http://sourceforge.net/tracker/index.php?func=detail&atid=115255&aid=2561140&group_id=15255 Is there anything I can do to work around this for now? -- View this message in context: http://www.nabble.com/Problem-with-Chunk-underline-tp21793217p21812409.html Sen

[iText-questions] Problem with Chunk underline

2009-02-02 Thread pickm
I feel like I am missing something simple here. When parsing HTML, I want this to replace an existing underline with a new one that I position. But it doesn't override the first, it just adds a second underline. I attempted to set the font style back to NORMAL, but that line of code is doing

Re: [iText-questions] Usps Intelligent Mail Barcode?

2008-11-21 Thread pickm
e = fieldPositions[2] - ((3f/32f) * inch); cb.addTemplate(tp, xCoordinate, yCoordinate); } Tobias van Treeck wrote: > > Hi pickm, > > have a look at the barcode4j project since they support USPS. > http://barcode4j.sourceforge.net/ > &

Re: [iText-questions] Usps Intelligent Mail Barcode?

2008-11-19 Thread pickm
Is there any future plan for support for this new barcode? pickm wrote: > > I could not find any information on the mailing list or in the book for > Usps Intelligent Mail Barcodes. Does iText support it? > -- View this message in context: http://www.nabble.com/Usps-Inte

[iText-questions] Usps Intelligent Mail Barcode?

2008-11-18 Thread pickm
I could not find any information on the mailing list or in the book for Usps Intelligent Mail Barcodes. Does iText support it? -- View this message in context: http://www.nabble.com/Usps-Intelligent-Mail-Barcode--tp20567701p20567701.html Sent from the iText - General mailing list archive at N

Re: [iText-questions] HTML to Pdf Paragraph Using ColumnText -- Parsing issue.

2008-07-20 Thread pickm
I seemed to have looked at all mailing list posts except the correct one (titled "StyleSheet / HtmlWorker and granular font size"). I changed the addHtml... method and the lists are working well. Putting the HTMLWorker output into a paragraph was not working. // new code public void add

[iText-questions] HTML to Pdf Paragraph Using ColumnText -- Parsing issue.

2008-07-20 Thread pickm
I know this is a part of iText that is not primary, but I am attempting to add HTML to a Pdf Paragraph based on bits and pieces of advice I found through the mailing list and the book. I put together the test class that I have attached and I am having some problems. I wanted to see if there was

Re: [iText-questions] moving AcroFields to a new page in PDF doc

2008-04-29 Thread pickm
Paulo, Thank you very much! This works perfectly. Paulo Soares wrote: > > Already done. See PdfStamper.ReplacePage(). Try it with the the latest > snapshot at http://brittanysoftware.com/itext/snapshots/latest/. > > Paulo > > iText-questions mailing list > iText-questions@lists.sourcefor

Re: [iText-questions] moving AcroFields to a new page in PDF doc

2008-04-14 Thread pickm
Paulo, Do you have an idea of when this topic might be reviewed? Thanks. Paulo Soares wrote: > > PdfCopyFields has all that is needed to move fields between pages or docs > but doesn't expose any methods to do that. I'll see what can be done in > the > near future. > > Paulo > > reference

Re: [iText-questions] moving AcroFields to a new page in PDF doc

2008-04-07 Thread pickm
Leonard, Can you point me to a good source to understand the PDF format, and possibly give me an example of what you mean? Do you mean that no methods currently exist to do what I want? Or do you mean that I would have to use a combination of existing methods to get the job done? This is my

Re: [iText-questions] moving AcroFields to a new page in PDF doc

2008-04-01 Thread pickm
Based on what Leonard mentions, and one of the options i listed earlier, is it possible (using iText) to pull out the background of the PDF (the content layers) and replace it with different content? Or to pull out everything else in the document except the AcroFields and replace it? Leonard, do

Re: [iText-questions] moving AcroFields to a new page in PDF doc

2008-03-28 Thread pickm
Paulo, That would be great! I think it is an extremely valuable aspect to expose for use. Is there anything I can tweak on my side so I can move along in the short-term? Are there a couple of specific methods I can expose and get this functionality? Thank you! Paulo Soares wrote: > > P

Re: [iText-questions] moving AcroFields to a new page in PDF doc

2008-03-27 Thread pickm
Thank you for the idea Leonard, I will check if CutePDF Professional also has an option like that. (I don't have Acrobat Professional) Is there a more generic way to handle this through iText? Or some other method through java? For instance, does the fact that Acrobat can pull the page out and

[iText-questions] moving AcroFields to a new page in PDF doc

2008-03-27 Thread pickm
My situation: I have a pdf template with form fields. I created a template file in Microsoft Publisher and printed it to PDF using CutePDF. I took the resulting PDF and overlayed form fields on it. I have no issues populating this from iText, everything works and looks great. I have the iText