[iText-questions] AUTO: Jens Schwendemann ist ab wesend / Jens Schwendemann is out of the office (Rückk ehr am 22.10.2009)

2009-10-15 Thread Jens . Schwendemann
Ich bin bis 22.10.2009 abwesend Ich werden Ihre Nachricht nach meiner Rückkehr beantworten. In dringenden Fällen, wenden Sie sich bitte an den Servicdesk. email: serviced...@hansgrohe.com tel: +49 7836 51-1000 I will respond to your message as soon as I'm back. In urgent cases, please contact Se

[iText-questions] image.setSpacingAfter( ) doesn't work (sort of)

2009-10-15 Thread Jason Berk
I want an image in the top right corner of a page followed by a table that spans the entire page width. I would like a 1/2" gap after the image before the table. Image image = Image.getInstance( ... ); image.setSpacingAfter( 36 ); doc.add(image); PdfPTable table = new PdfPTable( ... ); ... doc.a

Re: [iText-questions] regarding MS Word creation with itext

2009-10-15 Thread Mark Storer
iText supports HTML, PDF, and RTF formats. Adding a new format is a Really Big Job, and unlikely to happen without contracted development time. A lot of development time. Perhaps there's an X->DOC converter out there that will meet your needs (HTML, RTF, or PDF). --Mark Storer Senior

Re: [iText-questions] Paragraph and leading

2009-10-15 Thread Mathias Nilsson
cell.setUseAscender( true ) was the solution. // Mathias -- View this message in context: http://www.nabble.com/Paragraph-and-leading-tp25914314p25916595.html Sent from the iText - General mailing list archive at Nabble.com.

Re: [iText-questions] regarding MS Word creation with itext

2009-10-15 Thread David Gilbert
venki srigiri wrote: > hi Techies, > > > please clarify me on these things..is iText will fulfill following > things? if yes it would be more help full. > java > > 1.) a document need to be created dynamically. > 2.) this document will contains header and footer. > 3.) header inclued

[iText-questions] Paragraph and leading

2009-10-15 Thread Mathias Nilsson
Hi, I guess this is a simple question but I don't know how to fix this. I have a paragraph with a leading. The paragraph is wrapped inside a cell in a PdfTable. When setting the leading for the paragraph it does not start 0,0 in x,y axis. It starts a little down. if I set the leading to 0 everyt

Re: [iText-questions] Converting HTML in PDFPCell

2009-10-15 Thread segoette
Thanks for the link below. From your link in this post below, the example references adding the phrase directly to the Document. That works fine, but I'm finding some issues with taking HTML, converting to a Phrase with HTMLWorker and then putting the phrase into a PdfPCell. Problem is that the H

[iText-questions] regarding MS Word creation with itext

2009-10-15 Thread venki srigiri
hi Techies, please clarify me on these things..is iText will fulfill following things? if yes it would be more help full. java 1.) a document need to be created dynamically. 2.) this document will contains header and footer. 3.) header incluedes images also. 4.) body contains table and s

Re: [iText-questions] New Topic

2009-10-15 Thread Mark Storer
With iText? You don't. You're asking for "Reader Enabled" forms, which are only possible through Adobe products (Acrobat Pro in particular). You can build your form in iText then Enable it in Acrobat easily enough, but that's still a manual process. It is Far Easier to gather the data through

Re: [iText-questions] xfdf/fdf flatten to pdf with rich text

2009-10-15 Thread Leonard Rosenthol
Yes, perhaps even more so. -Original Message- From: NoGuts [mailto:mje...@gmail.com] Sent: Thursday, October 15, 2009 8:04 AM To: itext-questions@lists.sourceforge.net Subject: Re: [iText-questions] xfdf/fdf flatten to pdf with rich text OK. Thanks. And that goes for xfa as well? Le

Re: [iText-questions] xfdf/fdf flatten to pdf with rich text

2009-10-15 Thread NoGuts
OK. Thanks. And that goes for xfa as well? Leonard Rosenthol-3 wrote: > > I think Paulo is telling you is that is it POSSIBLE - BUT that you will > need to write the code yourself to handle this aspect as the current iText > library does not support rich text from FDF/XFDF... > > If you are

Re: [iText-questions] Itext Saving

2009-10-15 Thread wasegraves
You can add a "submit" button to the form, submitting the form data in HTML format, i.e., URL-encoded name=value pairs, to a server (not on the same network as the "local" computer. On the server side, do whatever tou want with the data, e.g., convert to FDF and merge with the form, or send "YOU

Re: [iText-questions] Itext Saving

2009-10-15 Thread Leonard Rosenthol
I assume that the user is working with Adobe Reader to fill the form? If so, then you will need to use Adobe Acrobat Professional or Adobe LiveCycle Reader Extensions Server in order to enable the saving capabilities of the form. The other alternative is to have the data posted to a server inst

Re: [iText-questions] encoding and fonts

2009-10-15 Thread Leonard Rosenthol
Type 1 or TrueType? How do you know it's not Unicode? How do you normally use it in programs like MSOffice? Leonard -Original Message- From: Mathias Nilsson [mailto:wicket.program...@gmail.com] Sent: Thursday, October 15, 2009 5:09 AM To: itext-questions@lists.sourceforge.net Subject:

Re: [iText-questions] xfdf/fdf flatten to pdf with rich text

2009-10-15 Thread Leonard Rosenthol
I think Paulo is telling you is that is it POSSIBLE - BUT that you will need to write the code yourself to handle this aspect as the current iText library does not support rich text from FDF/XFDF... If you are unable to write it yourself, I am sure that iText Software (aka Bruno) will be happy

[iText-questions] PageLabels prefix being used for all ranges

2009-10-15 Thread Caraliza Fonseca-Ensor
Hi In com.lowagie.text.pdf.PDFPageLabels.getPageLabels(), the prefix is set when the catalog for the number tree contains the 'P' key. However, this prefix remains unchanged for the next range if it doesn't contain the 'P' key. Should it be set to an empty String instead? Thanks ---

[iText-questions] New Topic

2009-10-15 Thread palcala
Hi! I tried using iText in creating an editable PDF file which was successful. I was able to create a registration form where users can input in the necessary fields. But I have a problem upon saving the file. A message is prompted that if i will save the file the input data are not saved. Ho

[iText-questions] Itext Saving

2009-10-15 Thread Princess Jade Alcala
I created a registration form using itext.. I was able to fill in the form with the necessary details.. My problem is i cannot save the pdf file after filling up the form. A dialog box appears saying that upon saving a blank form will be saved and my inputs are disregarded. How can i upload/save

Re: [iText-questions] encoding and fonts

2009-10-15 Thread Mathias Nilsson
I have a greek font that is not unicode and I'm using cp1253 but the characters are not right. What code page should be used for a greek font only? // Mathias -- View this message in context: http://www.nabble.com/encoding-and-fonts-tp25888960p25905260.html Sent from the iText - General mailin

Re: [iText-questions] xfdf/fdf flatten to pdf with rich text

2009-10-15 Thread NoGuts
Is it possible to achieve without flattening the form? I´m still getting unformated text setting GenerateAppearance and FormFlattening to false. I also see that all the correct properties of the field is registered, but it writes the "/V" from the FDF and not the "/RV". If I use XFDF, it doesn´t