Re: [iText-questions] PostScript Support?

2007-02-08 Thread Bruno Lowagie
UniXolutions, Inc. wrote: > Does iText provide regular PostScript (not EPS) to PDF support? no, you'll need another library to do that, for instance GhostScript. br, Bruno - Using Tomcat but need to do more? Need to support w

Re: [iText-questions] Page Labels

2007-02-08 Thread Bruno Lowagie
Dean Krueger wrote: > The CastException is being caused earlier, at the PdfDictionary labels > = (PdfDictionary)dict.get(PdfName.PAGELABELS); statement. It's sufficient to change this accordingly: (PdfDictionary)PdfReader.getPdfObject(dict.get(PdfName.PAGELABELS)); > I was just hoping I could get

Re: [iText-questions] Load a single page of a pdf document

2007-02-08 Thread Bruno Lowagie
mangoo4j wrote: > I'm trying to load a single page of a pdf document that is available as > byte[]. Following I want to add some extra content (text) to the page and > write it to the filesystem. > I'm not sure whether I'm on the right track while loading the single page of > interest using: > > b

Re: [iText-questions] Editing PDF file

2007-02-08 Thread Bruno Lowagie
Manoj wrote: > Hi All, > > Would like to know if it is possible to edit an existing PDF file using Editing a PDF is considered to be bad taste. PDF wasn't designed to be edited. A PDF file is meant to be the end product. You can manipulate a PDF, but you can't edit it. Do you really want to edit

[iText-questions] Editing PDF file

2007-02-08 Thread Manoj
Hi All, Would like to know if it is possible to edit an existing PDF file using iText. If yes will it possible for you guys to guide me to acheive the same. Thanks. -- Regards, Manoj - Using Tomcat but need to do more? Nee

[iText-questions] EOF exception being thrown

2007-02-08 Thread Q Bert
In trying to retrieve an image using the TiffImage.getTiffImage() method, I'm recieving an EOF exception. In looking into this issue through the source code, i'm seeing that the size of the byte array of the file is 146, and it appears the "length" returned by the TIFFTAG_STRIPBYTECOUNTS tag

[iText-questions] BarcodePdf417 - How to encode String without converting to byte[]?

2007-02-08 Thread S. I.
iText's BarcodePdf417 setText(byte[] b) & setText(String s) methods both set a byte array representation of the input before encoding to a 2d PDF417 barcode. Is there anyway I can encode the String to a PDF417 barcode WITHOUT converting to a byte array ? Unfortunately my barcode decoder is not a

Re: [iText-questions] PostScript Support?

2007-02-08 Thread mister bean
no. neither PostScript nor EPS to PDF support. --Andrew Binstock >>> re >>> UniXolutions, Inc. wrote: > > > Does iText provide regular PostScript (not EPS) to PDF support? > > Thanks so much, > > /Tom Larsen > > > - >

[iText-questions] PostScript Support?

2007-02-08 Thread UniXolutions, Inc.
Does iText provide regular PostScript (not EPS) to PDF support? Thanks so much, /Tom Larsen - Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated technology

[iText-questions] itext

2007-02-08 Thread mc1392
I keep getting "the import com.lowagie cannot be resolved" I tried adding the external jars, and I even place the jar in my web-inf/lib directory to no avail. any ideas? Mike - Using Tomcat but need to do more? Need to supp

[iText-questions] Page Labels

2007-02-08 Thread Dean Krueger
>Let me know if I guessed right concerning the object that >caused the ClassCastException. Could be you need getPdfObject >in other places too. The CastException is being caused earlier, at the PdfDictionary labels = (PdfDictionary)dict.get(PdfName.PAGELABELS); statement. I have been looking at th

[iText-questions] Load a single page of a pdf document

2007-02-08 Thread mangoo4j
I'm trying to load a single page of a pdf document that is available as byte[]. Following I want to add some extra content (text) to the page and write it to the filesystem. I'm not sure whether I'm on the right track while loading the single page of interest using: byte[] page = new PdfReader( b

Re: [iText-questions] .net 2.0?

2007-02-08 Thread porcupine
iTextsharp compiles in .Net 2.0 without problem. Ben Schultz-2 wrote: > > Is there a version of iText that is compatible with .Net 2.0? > > > > Thanks very much! > > > > Ben > > > > > > Ben Schultz | Onvia, Inc.

[iText-questions] Format example for 'Rich Text' AcroField

2007-02-08 Thread Andy Schaff
I'm dynamically creating PDFs in Java, and am using a marked-up PDF. I have a lot of text field AcroFields. I need to be able to do some custom formating inside of these fields, including the ability to bold certain lines of text, indent, etc. I am able to set the field's properties so it is usin

[iText-questions] indenting listitems after first line

2007-02-08 Thread Stuart Jansen
I'd like to have a List without any symbol where any ListItem that wraps onto a second line is indented more than the first line. For example: - A short item * sub item * sub item A long item that takes up so much space it wraps onto a second line with extra indent * sub item * sub i

Re: [iText-questions] PDF in web page

2007-02-08 Thread Brian McKeever
> I have a sqlserver blob field that contains a pdf file, > I need to retrieve the document and display it on a new web page,using asp.net > 1.0 C#. This has nothing to do with iText. Just get the data and send it back to the browser. -

Re: [iText-questions] xfa and iText

2007-02-08 Thread Bruno Lowagie (iText)
Sérgio Oliveira wrote: > Hi, > > I thought pdf stamper would work too, but Im not being able to use it. > If I try to stamp some text on it, the pdf file will increae, but I > can´t see any text. Is there some special concern I would have to consider? We've had a similar issue a while ago: the

[iText-questions] PDF in web page

2007-02-08 Thread dimitri
Hi! I have a sqlserver blob field that contains a pdf file, I need to retrieve the document and display it on a new web page,using asp.net 1.0 C#. Do u have any sample code please? thanks! - Using Tomcat but need to do more

Re: [iText-questions] xfa and iText

2007-02-08 Thread S�rgio Oliveira
Hi, I thought pdf stamper would work too, but Im not being able to use it. If I try to stamp some text on it, the pdf file will increae, but I can´t see any text. Is there some special concern I would have to consider? Thank you From: Bruno Lowagie <[EMAIL PROTECTED]> Reply-To: Post all y

Re: [iText-questions] Page Labels

2007-02-08 Thread Bruno Lowagie (iText)
Dean Krueger wrote: > The object class name returning is > "com.lowagie.text.pdf.PRIndirectReference" what is this telling me? OK, as promised a little update of ExtractPageLabels: I replaced: pageLabel = (PdfDictionary) i.next(); with: pageLabel = (PdfDictionary) PdfReader.getPdfObject((PdfObje

Re: [iText-questions] .net 2.0?

2007-02-08 Thread Fabrizio Accatino
yes, iTextSharp http://itextsharp.sourceforge.net/ Fabrizio - Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated technology to make your job easier. Download

[iText-questions] FYI: JAX Award

2007-02-08 Thread Bruno Lowagie (iText)
To whom it may concern: Alexander Neumann wrote: > Hi, > > Herewith I would like to inform you about the 2nd edition of our JAX > Innovation Award for outstanding European innovations for Java, Eclipse, > and SOA. The JAX Innovation Award is focused on the European market and > honours the mos

Re: [iText-questions] Great itext library

2007-02-08 Thread Bruno Lowagie (iText)
Alexis Pigeon wrote: > For Bruno : > Here's the page from where the 404 can be reached : > < http://www.lowagie.com/iText/docs.html > Thanks Alexis! I have updated the page. I hope nobody noticed (except maybe my being obnoxious), but due to the growing success of iText, I have had some problems w

Re: [iText-questions] Great itext library

2007-02-08 Thread Alexis Pigeon
Hi Carsten, On 07/02/07, Carsten Lüning <[EMAIL PROTECTED]> wrote: > Hi, > > thanks for that great library. But can you send me the API Documentation > because there is an "File not found 404" error at the website. Here's a direct link to the API : < http://itext.ugent.be/library/api/ > For Brun