[iText-questions] A bookmark that does not change the zoom

2007-10-18 Thread Dan Kaplan
Hello, I'm adding bookmarks to a PDFCopy through a method that does this: private void setBookmark(ArrayList bookmarks, String name, int totalPages) { HashMap map = new HashMap(); map.put("Title", name); map.put("Action", "GoTo"); map.put("Page", somepage

Re: [iText-questions] PDF to image

2007-10-18 Thread Bill Ensley
JPedal. -Bill Ensley www.bearprinting.com _ From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Euler Melo Jr Sent: Thursday, October 18, 2007 10:43 AM To: itext-questions@lists.sourceforge.net Subject: [iText-questions] PDF to image Hi, how to convert a pdf file (one page

[iText-questions] PDF to image

2007-10-18 Thread Euler Melo Jr
Hi, how to convert a pdf file (one page) to a image (png, jpg etc) ? Thanks. Euler Jr. - This SF.net email is sponsored by: Splunk Inc. Still grepping through log files to find problems? Stop. Now Search log events and config

[iText-questions] Including "cid" images for a HTML document

2007-10-18 Thread ElĂ­as Gago
I'm creating a HTML document using iText (with HtmlWriter). This HTML file will be sent inside an e-mail. I need to to put the following text " cid:logo1.jpg " inside a Cell (this text is to include an attached image)... Cell imageCell = new Cell(new Paragraph(" \"cid:logo1.jpg\" ")); ... but H

Re: [iText-questions] Certificate failed: Cannot be verified against the KeyStore or the certificate chain

2007-10-18 Thread Paulo Soares
You must put the smartcard public key in the java keystore or in other keystore used to verify. Paulo > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On > Behalf Of Fionn Ziegler > Sent: Thursday, October 18, 2007 2:44 PM > To: itext-questions@lists.sourceforg

[iText-questions] Certificate failed: Cannot be verified against the KeyStore or the certificate chain

2007-10-18 Thread Fionn Ziegler
Hi all, i just managed correct signing for PDF-Document with an extern smardcard. Now i want to verify it, but i get the following message: Certificate failed: Cannot be verified against the KeyStore or the certificate chain This is a Debug from the http://itextpdf.sourceforge.net/howtosign.html#

[iText-questions] iText and SWING or AWT

2007-10-18 Thread Euler Melo Jr
How I display a contents of existing pdf file in a JPanel using iText? This is possible? I need display each page in a container (SWING or AWT). - This SF.net email is sponsored by: Splunk Inc. Still grepping through log files

Re: [iText-questions] jvm crush

2007-10-18 Thread Maurizio Marra
Hi Hans, Thanks a lot for your help. Maurizio -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Hans-Werner Hilse Sent: October 17, 2007 2:02 PM To: itext-questions@lists.sourceforge.net Subject: Re: [iText-questions] jvm crush Hi, On Wed, 17 Oct 2007 13

Re: [iText-questions] Image size inside PdfPCell

2007-10-18 Thread Paulo Soares
The best practice depends on what you want to do. The first case places the image with the dimensions you choosed, it may overflow or not, you must know what you are doing. The second case scales the image automatically to the cell size, it's convenient but you have no flexibility. Paulo > --

Re: [iText-questions] template.showTextAligned vs template.showText

2007-10-18 Thread Paulo Soares
> -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On > Behalf Of [EMAIL PROTECTED] > Sent: Wednesday, October 17, 2007 8:21 PM > To: Post all your questions about iText here > Subject: [iText-questions] template.showTextAligned vs > template.showText > > hi >

Re: [iText-questions] Interoperability with VB 6 (Help needed)

2007-10-18 Thread Fabrizio Accatino
iTextSharp is a NET assembly. So you cannot call it directly from VB6. But you can create a NET "wrapper class" and register it as a COM object. http://www.nabble.com/Re%3A-iText-with-VB-or-ASP-p7671960.html Fabrizio On 10/18/07, jestin john <[EMAIL PROTECTED]> wrote: > > Hi, > > I want to make

Re: [iText-questions] Image size inside PdfPCell

2007-10-18 Thread GAMBELLI Raffaele
I'm sorry but your short answer doesn't help us to explain that strangeness documented in the first post. If in your plans it is normal that one time the image is scaled to fit a rectangle and one time the image isn't scaled, at least give us a best practice to add images to pdfPcells. Thanks,