Re: [iText-questions] EPS as output format

2005-04-13 Thread thmarx
hi http://www.jibble.org/epsgraphics/ it is a api to generate eps-graphics. maybe it helps you. [EMAIL PROTECTED] wrote: Hi all As far as I see from the documentation, it's not only possible to produce pdf-output with itext but there are also writers for rtf- and html-output. Are there plans (or

[iText-questions] Laoding DGN Drawings File onto PDF

2005-04-13 Thread Kandula, Ravi
Hi, We are loading images into pdf using Image class if itext API reading image as byte array from table and is working great for JPG,GIF,TIF. Image pdfImage = Image.getInstance(imgbytes); Now we want to load DGN files onto PDF. The above code is not recognizing the format of DGN Drawings File.

Re: [iText-questions] EPS as output format

2005-04-13 Thread Leonard Rosenthol
At 07:16 AM 4/13/2005, Justin Lee wrote: How hard do you think it'd be to convert something pdf2ps (from the ghostscript package) to dump out the generated PDF as PS? Well, the obvious issue is that GS can only be called from the command line and with files - but assuming those are accepta

Re: [iText-questions] EPS as output format

2005-04-13 Thread Justin Lee
How hard do you think it'd be to convert something pdf2ps (from the ghostscript package) to dump out the generated PDF as PS? Leonard Rosenthol wrote: > At 11:37 AM 4/13/2005, [EMAIL PROTECTED] wrote: > >> Are there plans (or are there already drivers) to support other >> outputformats too? > >

Re: [iText-questions] EPS as output format

2005-04-13 Thread Leonard Rosenthol
At 11:37 AM 4/13/2005, [EMAIL PROTECTED] wrote: Are there plans (or are there already drivers) to support other outputformats too? Nothing at this time... I'm especially interested in eps-output. Why not create the PDF and then convert it to EPS? Leonard ---

[iText-questions] RtfWriter2 Update

2005-04-13 Thread Mark Hall
Hi Bugfix for the RtfWriter2: * Fixed an IndexOutOfBoundsException in the row handling code. Greetings, Mark -- Computers don't actually think. You just think they think. (We think.) My GPG public key is available at: http://www.edu.uni-klu.ac.at/~mhall/data/security/Ma

[iText-questions] EPS as output format

2005-04-13 Thread Matthias . Dillier
Hi all As far as I see from the documentation, it's not only possible to produce pdf-output with itext but there are also writers for rtf- and html-output. Are there plans (or are there already drivers) to support other outputformats too? I'm especially interested in eps-output. Is there someti

RE: [iText-questions] Pdf generation using IText..

2005-04-13 Thread Paulo Soares
If it's not a classpath problem you'll have to recompile iText with your java version. > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On > Behalf Of j v ramaraju > Sent: Wednesday, April 13, 2005 4:20 PM > To: itext-questions@lists.sourceforge.net > Subject:

[iText-questions] Pdf generation using IText..

2005-04-13 Thread j v ramaraju
Hi , i am working on current project and i am able to generating PDF 's on tomcat perfectly and when i am deploying on Orcale 9I AS server the pdf report is not coming i have to deleivery i apperciate any help regarding this .. ramaraju, [EMAIL PROTECTED]No banners. No pop-ups. No kiddin

RE: [iText-questions] Question about language

2005-04-13 Thread Paulo Soares
You can sign it in any language as long as you provide the text. See PdfSignatureAppearance.setLayer2Text() and PdfSignatureAppearance.setLayer4Text(). > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On > Behalf Of Barrantes Sánchez, Cristina > Sent: Wednesda

[iText-questions] How to fit an image in a table cell for an .rtf document

2005-04-13 Thread vbrown
I am creating an rtf document with iText, it contains a table with a mixture of text and picture cells, I am having two problems: 1) I cannot seem to get an image in a cell using a byte array. See commented call to getPicture() below. 2) if I load a picture in via a url it doesn't size to fit the

[iText-questions] Help for the Newbie

2005-04-13 Thread 김학래
Hi, There!  Hi, there! I’m a just beginner in iText. I’d like to read and write the metadata in pdf files. But I’m afraid I cannot do this. I don’t know how to do and begin. I have read the tutorial and test it. But it has some problems. Can anyone give some general source for it? And when do I s

Re: [iText-questions] tiff2pdf and pdf2tiff

2005-04-13 Thread Leonard Rosenthol
At 09:04 AM 4/13/2005, Ben Anderson wrote: Also, it seems it would be easy to go from pdf2tiff, but I can't seem to grasp it. Is this possible with itext? No, it is not. If not, can someone refer me to a good open source library that does? JPEDAL - http://www.jpedal.org Leonard --

[iText-questions] Question about language

2005-04-13 Thread Barrantes Sánchez , Cristina
Hi all,       I'm signing a PDF document with iText libraries. After signing it, I can read the information in the PDF document itself because the sign is visible. The question is if I can choose the language in which that information is stored in PDF document when you sign it because if I s

Re: [iText-questions] Need to strip all XMP metadata when using PdfCopy

2005-04-13 Thread Greg Sabatino
Leonard, Thanks for the quick response. I need to suppress this information because we handle peer-reviewed documents. The evaluators must remain anonymous and sometimes there is need to send their evaluations back to a submitting author. On occasion the evaluator's name will appear in

Re: [iText-questions] Need to strip all XMP metadata when using PdfCopy

2005-04-13 Thread Leonard Rosenthol
At 12:30 PM 4/12/2005, Greg Sabatino wrote: Thanks for the quick response. I need to suppress this information because we handle peer-reviewed documents. The evaluators must remain anonymous and sometimes there is need to send their evaluations back to a submitting author. Ah...

Re: [iText-questions] tiff2pdf and pdf2tiff

2005-04-13 Thread Bruno Lowagie
Ben Anderson wrote: actually I tried using the Tiff2Pdf tool: public void testTiff2PdfTest() { String tiffFile = rootDir+"400dpiCCITTGroup4.tif"; String pdfFile = rootDir+"pdfer.pdf"; Tiff2Pdf.main(new String[] {tiffFile, pdfFile}); } This works, but the top margin is w

Re: [iText-questions] tiff2pdf and pdf2tiff

2005-04-13 Thread bruno
Ben Anderson wrote: The only problem is that it only grabs the first page of the tiff. Does anyone know how I can grab the second page of the tiff? Try the Tiff2Pdf tool in this JWS app: www.lowagie.com/iText/itext.jnlp The code can be found in package com.lowagie.tools.plugins Also, it seems i

Re: [iText-questions] tiff2pdf and pdf2tiff

2005-04-13 Thread Ben Anderson
actually I tried using the Tiff2Pdf tool: public void testTiff2PdfTest() { String tiffFile = rootDir+"400dpiCCITTGroup4.tif"; String pdfFile = rootDir+"pdfer.pdf"; Tiff2Pdf.main(new String[] {tiffFile, pdfFile}); } This works, but the top margin is way too big an

[iText-questions] tiff2pdf and pdf2tiff

2005-04-13 Thread Ben Anderson
Hi, we need to do both of these things. The tiff2pdf works for the most part... just grabbed some sample code of the web site: public void testTiff2PdfTest() { //String tiffFile = rootDir+"crl2688.tif"; String tiffFile = rootDir+"400dpiCCITTGroup4.tif"; String pdfFil

RE: [iText-questions] Need to strip all XMP metadata when using PdfCopy

2005-04-13 Thread Paulo Soares
That's quite easy. Look at the source of PdfReader.removeUnsusedObjects() and get what you need to reach all the pdf objects. If the PdfObject is a dictionary or a prstream use remove(PdfName.METADATA). Finally to clean up what was removed call PdfReader.removeUnsusedObjects(). > -Original Mes

Re: [iText-questions] Text box with iText

2005-04-13 Thread Bruno Lowagie
Christian Hauser wrote: I need to place text boxes within a PDF file like this: - | Here some text... | - These text boxes might have a border (top, bottom, right and left part of the border might have a different width), a border color, a text col

[iText-questions] Image spacing (alignment?) issue

2005-04-13 Thread Brendan Fagan
I've got a paragraph that I'm adding to a PdfPCell. The image I'm adding is displaying over the text before it. This happens with or without the image alignment set. I've checked the tutorials and docs, but I'm still stuck. How can I get a Chunk with an image to honor its place in a paragraph

[iText-questions] Text box with iText

2005-04-13 Thread Christian Hauser
Hi all I'm quite new to iText, but I'm impressed by its speed and rich set of features. (Thanks Bruno and Paulo) I need to place text boxes within a PDF file like this: - | Here some text... | - These text boxes might have a border (top, bottom, ri

Re: RE: RE: [iText-questions] Bug with List/Paragraph/ColumnText ?

2005-04-13 Thread Andreas Meyer
Sorry, but you just told me that ColumnText doesn't support lists inside paragraphs. My paragraphs contain text, images and text with background-images, because I need setKeepTogether(). You helped me a lot to align the background-image vertically with the text [setGenericTag, getDirectContentUn

RE: [iText-questions] PDF Searching

2005-04-13 Thread John Kendall
Paulo Thanks for the confirmation. I thought it was going to be so easy, it looks so simple when you use Acrobat! I assume that Adobe's PDF Library will have the right functionality, but I suspect it is too expensive for a small volunteer effort such as us. Signing off now. Best regards John

Re: [iText-questions] Need to strip all XMP metadata when using PdfCopy

2005-04-13 Thread Leonard Rosenthol
At 11:27 AM 4/12/2005, Greg Sabatino wrote: Hello, I am using PdfCopy to copy existing pdf's but need a way to positively remove any XMP metadata. Why? Are you also clearing the "DocInfo" fields as well? This seems to work just fine but I see in the PDF spec that XMP metadata can

Re: [iText-questions] PDF Searching

2005-04-13 Thread Paulo Soares
The answer still applies. To seach the doc you need to extract first the text. - Original Message - From: "John Kendall" <[EMAIL PROTECTED]> To: Sent: Tuesday, April 12, 2005 6:23 PM Subject: RE: [iText-questions] PDF Searching > From: Paulo Soares yahoo.com> > Subject: Re: PDF Searc

RE: [iText-questions] Help for the Newbie

2005-04-13 Thread Paulo Soares
http://article.gmane.org/gmane.comp.java.lib.itext.general/9891 It's also possible to do it in PdfStamper for existing PDFs. To read the metadata: PdfReader reader = ...; PdfDictionary catalog = reader.getCatalog(); PRStream metadata = (PRStream)PdfReader.getPdfObject(catalog.get(PdfName.METADA

[iText-questions] Question about language

2005-04-13 Thread Barrantes Sánchez , Cristina
Hi all,       I'm signing a PDF document with iText libraries. After signing it, I can read the information in the PDF document itself because the sign is visible. The question is if I can choose the language in which that information is stored in PDF document when you sign it because if I

Re: [iText-questions] Help for the Newbie

2005-04-13 Thread Bruno Lowagie
김학래 wrote: > Hi, There! > > Hi, there! > > I’m a just beginner in iText. I’d like to read and write the metadata > in pdf files. > > But I’m afraid I cannot do this. I don’t know how to do and begin. > PdfReader/PdfStamper > I have read the tutorial and test it. But it has some problems. > It's u

RE: [iText-questions] Need to strip all XMP metadata when using PdfCopy

2005-04-13 Thread Paulo Soares
This should work. Use PdfStamper to get the result out. import java.io.*; import java.awt.Color; import com.lowagie.text.*; import com.lowagie.text.pdf.*; import java.util.*; public class metadata { public static void main(String[] args) { try { PdfReader rea