Re: [iText-questions] PDF to Image converter

2006-04-25 Thread bruno
[EMAIL PROTECTED] wrote: Hi all, has anyone done this before? I want to convert a PDF document into an image format (jpg, gif, or tiff). That's not the core business of iText; use something like JPedal instead. br, Bruno --- Using Tomcat b

[iText-questions] PDF to Image converter

2006-04-25 Thread dong.wang
Hi all, has anyone done this before? I want to convert a PDF document into an image format (jpg, gif, or tiff).   Thank you,   Dong Wang

[iText-questions] scaleToFit() and scalePercent() of Image class work for RTF?

2006-04-25 Thread Shawn Qi
Hey, all, Do methods scaleToFit() and scalePercent() of Image class work for RTF? I created the image from JPEG. The methods worked for PDF. However, they seems not working for RTF. My iText version is 1.4. Thanks. Shawn --- Using Tomcat

Re: [iText-questions] hello

2006-04-25 Thread Leonard Rosenthol
At 01:07 PM 4/25/2006, Martin Newsam wrote: i was wondering, is there any way i can 'pull' a font from a pdf file that i have got off a website? Technical issues aside - doing so would violate the copyrights of the font vendor. i really need a certain font, how can i do this?  

Re: [iText-questions] hello

2006-04-25 Thread Paulo Soares
Putting aside the licensing issue most fonts in PDFs are subset rendering them useless for other purposes. Paulo - Original Message - From: "Martin Newsam" <[EMAIL PROTECTED]> To: Sent: Tuesday, April 25, 2006 6:07 PM Subject: [iText-questions] hello i was wondering, is there any w

Re: [iText-questions] Clarification of usage

2006-04-25 Thread Paulo Soares
It will work with any PDF but the advantage of AcroForms is knowing were to write the new text. Paulo - Original Message - From: "rakesh mailgroups" <[EMAIL PROTECTED]> To: Sent: Tuesday, April 25, 2006 9:57 PM Subject: [iText-questions] Clarification of usage Hi, just another poi

Re: [iText-questions] Soft-Mask Dictionaries

2006-04-25 Thread Paulo Soares
I think this can already be done. Paulo - Original Message - From: "Michael J. Mueller" <[EMAIL PROTECTED]> To: Sent: Tuesday, April 25, 2006 10:57 AM Subject: [iText-questions] Soft-Mask Dictionaries Hello I could not find support for Soft-Mask Dictionaries in iText (because they

[iText-questions] hello

2006-04-25 Thread Martin Newsam
i was wondering, is there any way i can 'pull' a font from a pdf file that i have got off a website? i really need a certain font, how can i do this?   martin, thanks --- Using Tomcat but need to do more? Need to support web services, security

[iText-questions] Clarification of usage

2006-04-25 Thread rakesh mailgroups
Hi,just another point which may or may not be obvious.I have been tasked with generating an application form, pre-populated with client data.I have been given a blank pdf form. I was trying to create the pdf programmatically and merge in my dynamic data. I was looking through the Powerpoint slides

Re: [iText-questions] Question about fonts

2006-04-25 Thread Rakesh Patel
Hi, i would prefer to include the fonts i want to use inside the war file. This way i do not have to worry about cross-platform issues and giving the app permissions to read the local file system. I would be grateful for more guidance on how to include the ttf files inside my war? Do i just

[iText-questions] Example searched for many many columns

2006-04-25 Thread Martin Schmitz
Hello,I am new to ITEXT but have read and test alot. I have a dynamic table, so the cols and rows aren't fix.There were many people saying using writeSelectedRows is the solution. Does anybody have an implemented version, I can learn from. The problem I have is the following. How to determine the w

Re: [iText-questions] Question about fonts

2006-04-25 Thread Piotr Górski
Hi, IMHO just attach permanently the Arial Font to your application ? Write simple code which will check operating system and then register this font. For example: DefaultFontMapper mapper = new DefaultFontMapper(); osname = System.getProperty("os.name"); userdir = System.getProperty("user.di

Re: [iText-questions] Question about fonts

2006-04-25 Thread Bruno Lowagie
Rakesh Patel wrote: Hi, I'm new to iText so please forgive my question if its obvious. I am developing a pdf that needs to use Arial font. I saw previous postings about finding the ttf file and registering it. However, my app runs on both windows and unix so hard coding a directory path is

[iText-questions] Question about fonts

2006-04-25 Thread Rakesh Patel
Hi, I'm new to iText so please forgive my question if its obvious. I am developing a pdf that needs to use Arial font. I saw previous postings about finding the ttf file and registering it. However, my app runs on both windows and unix so hard coding a directory path is not easy. Has anyone

[iText-questions] FYI: Maven-related PDF problem

2006-04-25 Thread bruno
Hello, this is not a question, just FYI. This is the situation: - you have some template PDF files in the resources directory of your app. - your application reads these PDFs and stamps them with data. This is what happens: - when you build your war, Maven copies the PDF files to the target dir

Re: [iText-questions] Text Spacing Question

2006-04-25 Thread Adrian Nadeau
Thanks for the info... seems to be the better choice for advanced table functions. Regards, Adrian bruno wrote: Adrian Nadeau wrote: Hello, We are currently creating a Table within iText with the following code: Table table = new Table(4,1); table.setTableFitsPage(true); table.setBorderWi

Re: [iText-questions] Broken link in tutorial

2006-04-25 Thread bruno
Rakesh Patel wrote: also, the download on page:http://www.lowagie.com/iText/download.html for the jar file downloads a corrupt file. CVS was also down when i tried earlier. Works for me. br, Bruno --- Using Tomcat but need to do more? N

Re: [iText-questions] Text Spacing Question

2006-04-25 Thread bruno
Adrian Nadeau wrote: Hello, We are currently creating a Table within iText with the following code: Table table = new Table(4,1); table.setTableFitsPage(true); table.setBorderWidth(0f); table.setBorderColor(new Color(255, 255, 255)); table.setCellpadding(0); table.setCellspacing(0);

[iText-questions] Text Spacing Question

2006-04-25 Thread Adrian Nadeau
Hello, We are currently creating a Table within iText with the following code: Table table = new Table(4,1); table.setTableFitsPage(true); table.setBorderWidth(0f); table.setBorderColor(new Color(255, 255, 255)); table.setCellpadding(0); table.setCellspacing(0); Cell cell = ne

Re: [iText-questions] Broken link in tutorial

2006-04-25 Thread Rakesh Patel
also, the download on page:http://www.lowagie.com/iText/download.html for the jar file downloads a corrupt file. CVS was also down when i tried earlier. Cheers Rakesh bruno wrote: Jan Nemec wrote: Hi, i'd like to report a broken link in your tutorial. Thanks! It's fixed now. br, Brun

[iText-questions] Reading PDF Document (newie)

2006-04-25 Thread Ferran Sole
Hi, I've just started with iText and I'm trying to read a PDF File for sending it to the print through a silent print.At the moment, following the instructions and making some changes I've able to send a new document to the print. My problem now, is that I don'w know how to read the whole documen

[iText-questions] Soft-Mask Dictionaries

2006-04-25 Thread Michael J. Mueller
Hello I could not find support for Soft-Mask Dictionaries in iText (because they aren't implemented yet) Thus I got two questions: 1. Do you intent to implement Soft-Mask Dictionaries? 2. Would you accept a patch for support of Soft-Mask Dictionaries (To be too enthusiastic. I will only have time