RE: [iText-questions] URGENT HELP

2004-10-21 Thread David Thielen
A pdf document must have a page and the page must have something on it. So if that is your problem, for a blank document create a page and put a space on it.   - dave     From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Gilberto Sousa Sent: Thursday, October 21, 2

[iText-questions] URGENT HELP

2004-10-21 Thread Gilberto Sousa
I´m in deep trouble using the iText software. When I used iText I have no problems in OC4J, my dev environnement. But when i deploy it to Oracle9ias, (copying the iText.jar in WEB-INF/lib/) it makes me the next error when i run: "The document has no pages. " I´ve been reading some answers

Re: [iText-questions] Problems with MultiColumnText

2004-10-21 Thread Steve Appling
That is a bug. I didn't understand the difference between getDirectContentUnder and getDirectContent from the JavaDoc. Will you please change that, Paulo. Thanks for pointing this out. I hope this class will be useful. - Original Message - From: "Christian Lauer" <[EMAIL PROTECTED]> To

[iText-questions] DOCUMENT HAS NO PAGES --HELP

2004-10-21 Thread Gilberto Sousa
I´m in deep trouble using the iText software. When I used iText I have no problems in OC4J, my dev environnement. But when i deploy it to Oracle9ias, (copying the iText.jar in WEB-INF/lib/) it makes me the next error when i run: "The document has no pages. " I´ve been reading some answers

[iText-questions] iText equivalent of Textbox in Acrobat Standard

2004-10-21 Thread Neil Darroch
I found something referred to as a textbox in Adobe Acrobat Standard edition. Does anyone know the equivalent in iText? It seems to behave much like a comment but is permenantly visible as text in a rectangle (when comments are shown). Thanks, Neil.

Re: [iText-questions] Underlining

2004-10-21 Thread Paulo Soares
Fancy underlines require more work... Best Regards, Paulo Soares --- Dave Dash <[EMAIL PROTECTED]> wrote: > Thanks. This works really well, but if I have a > Font defined: > > Font underlineitalic = new > Font(franklinGothicBookBase, 9, > Font.UNDERLINE | Font.ITALIC, java.awt.C

Re: [iText-questions] table of content

2004-10-21 Thread Paulo Soares
You have a toc example at itextpdf.sf.net. --- Marcel Kroschel <[EMAIL PROTECTED]> wrote: > hi > > i want to make a table of contents at the second > page of the my pdf - > file. > example: teste..site 2 > about..site 6 > ... > > i make the file an save the site in an

Re: [iText-questions] digital signature incorporated back into existing pdf - Can PdfStamper help me?

2004-10-21 Thread Paulo Soares
--- [EMAIL PROTECTED] wrote: > Hi, > > I've looked at the document > http://itextpdf.sourceforge.net/howtosign.html > and I've got some questions about it. > > First, I cant find the following method: > PdfStamper.createInvisibleSignature(). > Has this been changed?? > You'll need itext-paul

Re: [iText-questions] digital signature incorporated back into existing pdf - Can PdfStamper help me?

2004-10-21 Thread Leonard Rosenthol
At 11:23 AM 10/21/2004, [EMAIL PROTECTED] wrote: I'm using iText to generate a sample pdf, but then I'm using a third-party tool (ncipher dse200 - http://www.ncipher.com/dse/index.html) to generate me a time-stamped digital signature for that sample pdf. OK I then want to incorporate th

RE: [iText-questions] Underlining

2004-10-21 Thread Paulo Soares
Chunk.setUnderline() > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On > Behalf Of Dave Dash > Sent: Wednesday, October 20, 2004 9:24 PM > To: [EMAIL PROTECTED] > Subject: [iText-questions] Underlining > > Is there a way to make the Underlines (i.e. Font.UND

[iText-questions] digital signature incorporated back into existing pdf - Can PdfStamper help me?

2004-10-21 Thread chcharlesworth
Hi, I've looked at the document http://itextpdf.sourceforge.net/howtosign.html and I've got some questions about it. First, I cant find the following method: PdfStamper.createInvisibleSignature(). Has this been changed?? That aside, what I'm more interested in solving is the following: I'm us

RE: [iText-questions] URL in existing PDF

2004-10-21 Thread Paulo Soares
Use PdfStamper. > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On > Behalf Of Movyn > Sent: Thursday, October 21, 2004 12:41 AM > To: [EMAIL PROTECTED] > Subject: [iText-questions] URL in existing PDF > > Hi, > > I have an existing PDF template which I'm us

RE: [iText-questions] Concatinating PDF files!!

2004-10-21 Thread Paulo Soares
See http://www.lowagie.com/iText/tutorial/ch13.html#tools. I suspect that you have the misconception that PDF is the same as Word structure wise. You should read the initial chapters of the PDF reference to understand what you are dealing with. It looks complicated because it is complicated. The PD

Re: [iText-questions] Underlining

2004-10-21 Thread Dave Dash
Thanks. This works really well, but if I have a Font defined: Font underlineitalic = new Font(franklinGothicBookBase, 9, Font.UNDERLINE | Font.ITALIC, java.awt.Color.black); Is there a way to set it's underline? I have a lot of code that just parses through for and sets them to be a font th

RE: [iText-questions] how to add PDF text with Pantone Color

2004-10-21 Thread Paulo Soares
PdfSpotColor spot = new PdfSpotColor("PANTONE 143 CV", 0, new CMYKColor(0, 0.35f, 0.85f, 0)); SpotColor tint = new SpotColor(spot, 1); cb.setColorFill(tint); Best Regards, Paulo Soares > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of Carl > Sent: T

[iText-questions] table of content

2004-10-21 Thread Marcel Kroschel
hi i want to make a table of contents at the second page of the my pdf - file. example: teste..site 2 about..site 6 ... i make the file an save the site in an arraylist. problem: 1) i only know all site numbers at the end of the document. how can i write it at page two?

[iText-questions] how to add PDF text with Pantone Color

2004-10-21 Thread Carl
Hi, I would like to know if it's possible with iText to create a PDF with text in specified Pantone Color. Currently I have, for CMYK colors : cb.beginText(); cb.setFontAndSize(fnt, sfnt.getSize()); cb.setCMYKColorFill(88,100,2,6); cb.setTextMatrix(100,400) cb.showText("text with in pantone color

RE: [iText-questions] MultiColumnText in PdfPCells

2004-10-21 Thread Paulo Soares
That's the same problem as writing text rotated 90 degrees. In this case the question is when to break the column. Best Regards, Paulo Soares > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On > Behalf Of Christian Lauer > Sent: Thursday, October 21, 2004 2:48

[iText-questions] MultiColumnText in PdfPCells

2004-10-21 Thread Christian Lauer
Hi Steve, it would be great if the MultiColumnText would be supported as nested element of PdfPCells. Best regards, Christian --- This SF.net email is sponsored by: IT Product Guide on ITManagersJournal Use IT products in your business? Tell

[iText-questions] Problems with MultiColumnText

2004-10-21 Thread Christian Lauer
Hi Steve, Hi Paulo, I've tried to replace the usage of ColumnText by MultiColumnText, which behaves like my attempt of using the ColumnText feature. The only problem I've encountered so far, is that the MultiColumnText is rendered in the background, so I'm not able to use background images in comb

RE: [iText-questions] Re: newbie question...using iText to fill out exisiting PDF file

2004-10-21 Thread Paulo Soares
> -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On > Behalf Of Bao Trang > Sent: Wednesday, October 20, 2004 5:03 PM > To: [EMAIL PROTECTED] > Subject: [iText-questions] Re: newbie question...using iText > to fill out exisiting PDF file > > Can I get some h

[iText-questions] URL in existing PDF

2004-10-21 Thread Movyn
Hi, I have an existing PDF template which I'm using iText to insert text onto. The template has URLs which work, but after going through the text layout process and writing out a new file, the URLs don't work anymore. Is there something I'm missing here or is this a "feature" of iText? Thank