[iText-questions] Addind image in layers

2005-08-18 Thread Juan Sanchez
Hi How can I put an image in layer 0 (or other) I see that with PdfSignature Aparence it's possible to add image in layer2 but not in other layers. Regards _ Express yourself instantly with MSN Messenger! Download today it's

RE: [iText-questions] Addind image in layers

2005-08-18 Thread Paulo Soares
PdfSignatureAppearance.getLayer(int layer) -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Juan Sanchez Sent: Thursday, August 18, 2005 3:14 PM To: itext-questions@lists.sourceforge.net Subject: [iText-questions] Addind image in layers Hi

RE: [iText-questions] Trouble embedding fonts on the server-side

2005-08-18 Thread Paulo Soares
The question here is what name unix call their fonts. Run the following code to compare what the font names are in windows and in Unix. import java.awt.Font; import java.awt.GraphicsEnvironment; public class java_fonts { public static void main(String[] args) { try {

[iText-questions] Trouble embedding fonts on the server-side

2005-08-18 Thread Michael Baranov
Greetings, guys! I desperately need any help with the following stuff, 'cos my project is gonna crash :-( So here is the trouble: I'm generating some PDF content on the server-side (Tomcat servlet). The PDF docs contain Cyrillic symbols so I embed Cyrillic fonts. In my case those are Times New

[iText-questions] Re:Image overlapping text in PDF table cell

2005-08-18 Thread Horrisberger, Ryan
Ari, I did some investigation; this isn't a problem for iText v. 1.02b and earlier, it only affects v1.1 and later. I wrote the following test code to prove your bug to myself, I ran it with both 1.02b and 1.1: import java.io.BufferedOutputStream; import java.io.FileOutputStream; import

[iText-questions] Acrobat verifying signatrure

2005-08-18 Thread Juan Sanchez
Hi to all. After I insert a signature in a pdf document , Acrobat can verify it correctly, but when I push over the Signature Properties appear a window with the next message : Acrobat Error Bad Parameter., and form with signature properties appear empty is it necessaty to add some field

[iText-questions] Problem: image is cut

2005-08-18 Thread Patrick Chauviaux
Hi all, I am trying to include an image into a PDF. The image is contained in a jar. I am using the following code to access and include the image: Image logo= Image.getInstance(this.getClass().getResource(/images/logo.gif)); logo.scaleToFit(41, 43); logo.setAlignment(Image.ALIGN_CENTER);

[iText-questions] PDF size, PDF to HTML?

2005-08-18 Thread Lehradt, Maik
Hello, We use iText to fill forms with datase values in existing pdf documents. The user can upload documents, which are also stored in the database. The problem is that the resulting documents are sometimes to large (~200kB) for users without a dial-up internet connection. Possible solutions:

Re: [iText-questions] add image and text to PDF template

2005-08-18 Thread bruno
Ceily wrote: I have a PDF template. An existing PDF file. On-the-fly, I want to populate the template text fields with data - and I also want to stick an image in the PDF (in an absolute position) - on-the-fly. I have tried to proto-type this. I can fill out a form as one example, OK,

[iText-questions] setting the cursor in a PDF Document

2005-08-18 Thread Wesley Maness
Is there anyway to force-set the position of the y Cursor in the PDF document? So that when you do a document.add() it can add it where you want? (We do not want to use absolute positioning; too much management-overhead.) Thanks, Wesley C. Maness

Re: [iText-questions] Unexpected return

2005-08-18 Thread bruno
yuanjk wrote: I think it must be that I wrote a servlet which was not thread safe . It's very hard to debug this kind of problems from a distance. Even if you would use iText1.3.2 instead, thus avoiding one particular bug, that wouldn't make you servlet more safe. If another exception

Re: [iText-questions] PDF size, PDF to HTML?

2005-08-18 Thread Leonard Rosenthol
At 05:34 AM 8/18/2005, Lehradt, Maik wrote: We use iText to fill forms with datase values in existing pdf documents. The user can upload documents, which are also stored in the database. The problem is that the resulting documents are sometimes to large (~200kB) for users without a dial-up

[iText-questions] Re:Image overlapping text in PDF table cell

2005-08-18 Thread Horrisberger, Ryan
I've attached the two PDFs that the below code generated. So you can see what I am talking about. Note: using PdfPTable and PdfPCell doesn't fix the problem. -Ryan --- Ari, I did some investigation; this isn't a problem for iText v. 1.02b and earlier, it

Re: [iText-questions] Opening Adobe upon document close

2005-08-18 Thread bruno
Angela Berk wrote: Does that code send my PDF file to a printer or does it open up Adobe as soon as it's done writing it? The PDF is not send to the printer directly. The code needs Adobe Reader to print. br, Bruno --- SF.Net email is

[iText-questions] Creating Bullet in RTF

2005-08-18 Thread jonat
Hi, I'm trying to put bullet in a list ( 0086 in hex wingdings) and when i try my code, I have a big dot. not what it suppose to be. When I try FancyList in itext example, I can't made it work, I have only number, no bullet. My document is a RTF and I'm using iText 1.3.2. Can someone help me

Re: [iText-questions] support

2005-08-18 Thread Leonard Rosenthol
At 11:04 AM 8/17/2005, osamaao wrote: I would like to use the iText PDF library in a commercial product and I would like to know what kind of support I can get. Do you sell support? And in case I had a critical error, to whom I can refer? My company, PDF Sages, offers commercial

[iText-questions] itext read rtf document

2005-08-18 Thread poorduck
Can itext read rtf document? Who can give me an example? __ 注册新浪2G免费邮箱( http://mail.sina.com.cn/chooseMode.html ) === --- SF.Net email is

[iText-questions] Suppress (disable) error message: 'Illegal operation 'Tm' outside text object.'

2005-08-18 Thread Wesley Maness
Does anyone know how to suppress or disable the Adobe Reader error: Illegal operation 'Tm' outside text object. From displaying when one goes to open/read/view a PDF documented that we generate using iText (absolute positioning of Elements)? Thanks, Wesley C. Maness GraphLogic Inc.

Re: [iText-questions] Suppress (disable) error message: 'Illegal operation 'Tm' outside text object.'

2005-08-18 Thread Leonard Rosenthol
At 03:41 PM 8/18/2005, Wesley Maness wrote: Does anyone know how to suppress or disable the Adobe Reader error: Illegal operation 'Tm' outside text object. From displaying when one goes to open/read/view a PDF documented that we generate using iText (absolute positioning of Elements)?

Re: [iText-questions] Re:Image overlapping text in PDF table cell

2005-08-18 Thread Paulo Soares
You are strongly advised to use PdfPTable, Table is not supported anymore. It fixes the problem (really!). - Original Message - From: Horrisberger, Ryan [EMAIL PROTECTED] To: itext-questions@lists.sourceforge.net Sent: Thursday, August 18, 2005 7:46 PM Subject: [iText-questions] Re:Image

[iText-questions] Creating Bullet in RTF

2005-08-18 Thread Jonathan
Hi, I'm trying to put bullet in a list ( 0086 in hex wingdings) and when i try my code, I have a big dot. not what it suppose to be. When I try FancyList in itext example, I can't made it work, I have only number, no bullet. My document is a RTF and I'm using iText 1.3.2. Can someone help me

[iText-questions] Re:Image overlapping text in PDF table cell

2005-08-18 Thread _ __
Ari, I did some investigation; this isn't a problem for iText v. 1.02b and earlier, it affects v1.1 and later. I wrote some the following test code to prove this to myself with both 1.02b and 1.1: import java.io.BufferedOutputStream; import java.io.FileOutputStream; import

[iText-questions] Font rendering problem with Graphics2D and large scale factors

2005-08-18 Thread Greg Steckman
I'm rendering to a Graphics2D and the font output is not correct. I believe it is because I am using a large scale factor and small values for font size, positions, etc. Attached is the example from the web site (the one that draws a pear) with the modification that the scale has been set to

[iText-questions] iText

2005-08-18 Thread Eng. Mohammad Al Er
Hi: I wan to ask, Is iText a free java library? So I can use it free? And who is responsible for the support.. Regards

Re: [iText-questions] setting the cursor in a PDF Document

2005-08-18 Thread Paulo Soares
You must use absolute positioning. - Original Message - From: Wesley Maness [EMAIL PROTECTED] To: 'Wesley Maness' [EMAIL PROTECTED]; itext-questions@lists.sourceforge.net Sent: Wednesday, August 17, 2005 9:47 PM Subject: [iText-questions] setting the cursor in a PDF Document Is

[iText-questions] Problem with Radio Button.

2005-08-18 Thread Guillermo Odone
I have a PDF with some textbox, combo, buttons, and radiobuttons. When I first open the PDF Form and fill in the fields and submit, NO PROBLEM The problem comes when I want to update the Form's data. I open the PDF Form again, but loading the data from my DB. up to there it works fine, but when I

[iText-questions] Removing String Objects

2005-08-18 Thread Youssef Eldakar
Is it possible to use iText to remove all string objects in a PDF? Youssef Eldakar Bibliotheca Alexandrina --- SF.Net email is Sponsored by the Better Software Conference EXPO September 19-22, 2005 * San Francisco, CA * Development

Re: [iText-questions] Problem with section indentation in RTF doc

2005-08-18 Thread Mark Hall
On Thursday 11 August 2005 18:07, Valentin Baudot wrote: I'm adding chapters and sections to a RTF document and I want to indent the sections. I'm using the addSection method with 3 args: chapter3.addSection (20,title,2); but the result is not indented. Even with the setIndentation () method

[iText-questions] Adding aparence informatio nto PDF

2005-08-18 Thread Juan Sanchez
Hi to all. After I created a signed pdf document I can not to view Signature Properties becuse apeear the message Acrobat Error Bad Parameter. My pdf generated has not the M and NAME values and I think that this isth cause of error. Initally I reserve space to save in the dictionary M, NAME

[iText-questions] Re:Image overlapping text in PDF table cell

2005-08-18 Thread Horrisberger, Ryan
Ari, I did some investigation; this isn't a problem for iText v. 1.02b and earlier, it only affects v1.1 and later. I wrote the following test code to prove your bug to myself, I ran it with both 1.02b and 1.1: import java.io.BufferedOutputStream; import java.io.FileOutputStream; import

Re: [iText-questions] Font rendering problem with Graphics2D and large scale factors

2005-08-18 Thread Paulo Soares
This is not really a bug as very small font sizes are in many places rounded to zero but in any case I fixed iText to accept it. The fix is in the CVS. - Original Message - From: Greg Steckman [EMAIL PROTECTED] To: itext-questions@lists.sourceforge.net Sent: Thursday, August 18, 2005

[iText-questions] HTML to PDF

2005-08-18 Thread Lee, Ashley
Ok. I have asked this question before but it seems as though no one has an answer so I'll try and ask it again. Is there anyway to write and HTML string to the PDF document? I don't want the HTML tags to appear in the document and I want to keep the HTML formatting. Here is the scenario:

Re: [iText-questions] HTML to PDF

2005-08-18 Thread Paulo Soares
HTMLWorker - Original Message - From: Lee, Ashley [EMAIL PROTECTED] To: itext-questions@lists.sourceforge.net Sent: Thursday, August 18, 2005 11:19 PM Subject: [iText-questions] HTML to PDF Ok. I have asked this question before but it seems as though no one has an answer so I'll try

Re: [iText-questions] Removing String Objects

2005-08-18 Thread Leonard Rosenthol
At 11:29 AM 8/18/2005, Youssef Eldakar wrote: Is it possible to use iText to remove all string objects in a PDF? Are you talking about strings such as Author, Keywords? Strings such as the name of a font? Strings as in textual content? Leonard