[iText-questions] Performance?

2004-02-27 Thread Erhan Sen
Hello, When I try to create and download a file on the fly on my local development environment, total time elapsed when I start operation takes too long. I hade the sample lines in my code, and It creates about a 1K document but it takes me 56 sec to download/create. Can you help me that what am

[iText-questions] RE: Line-Screen

2004-02-27 Thread Bill Ensley
A Line-Screen is used in the printing industry. It describes how many lines per inch a dot-screen is rendered. This applies to half-toning both on laser-printers and offset-presses.   For example: a newspaper may use a 65 line screen a high speed press like a Heidelberg may use a 150 line

RE: [iText-questions] Re-Post: Line-Screen

2004-02-27 Thread Paulo Soares
Title: RE: [iText-questions] Re-Post: Line-Screen What's a line-screen? Best Regards, Paulo Soares -Original Message- From:   [EMAIL PROTECTED] [SMTP:[EMAIL PROTECTED] On Behalf Of Bill Ensley Sent:   Friday, February 27, 2004 18:01 To: iText Mail Group Subject:    [i

[iText-questions] Re-Post: Line-Screen

2004-02-27 Thread Bill Ensley
Does anyone have any thoughts on embedding a default line-screen in a PDF with iText I know it's possible to embed this in a pdf, and would be glad to start coding it, but does anyone know where it gets written in the pdf?

RE: [iText-questions] Signature contents as hex chain

2004-02-27 Thread Paulo Soares
Title: RE: [iText-questions] Signature contents as hex chain SignatureDict.put(PdfName.CONTENTS, new PdfString(contents).setWritingMode(true)); Best Regards, Paulo Soares -Original Message- From:   [EMAIL PROTECTED] [SMTP:[EMAIL PROTECTED] On Behalf Of Luis Pascual Forner Sent:

RE: [iText-questions] gmane.comp.java.lib.itext.general

2004-02-27 Thread Paulo Soares
Title: RE: [iText-questions] gmane.comp.java.lib.itext.general Use batik to import SVG images. Use the following code as a start:     PdfContentByte cb = writer.getDirectContent();     Graphics2D g2 = cb.createGraphics(500, 500);     PrintTranscoder prm = new PrintTranscode

[iText-questions] gmane.comp.java.lib.itext.general

2004-02-27 Thread rick helsen
Does the iText library have any support for SVG images ? For instance, i am generating svg dynamically (svg and xsl) and want to display the images as pdf's thru a browser. Is their a way to pull this off with the current library ? thanx rick

[iText-questions] Question regarding PDF conversion to JPG

2004-02-27 Thread Philippe Fuentes
Hello everyone,   Once I have splitted my .PDF in several .PDF (1 page per  1 .pdf file), I would like to be able to convert my one page-pdf to a jpg (I have a web app that automatically split and generate thumbnails of documents).   I don’t know how to make this conversion using iText

Re: [iText-questions] Concatenating two pdfs.

2004-02-27 Thread jean-philippe . belanger
Sure thing. The thing is that you'll always have to create a NEW document to merge. So let's say your pivot page is 9. Process page 1 thru 9 of the first document; Insert the whole 2nd document; continue from 10 thru the end of the first. As far as I know there is no other easier way to do it.

Re: [iText-questions] Concatenating two pdfs.

2004-02-27 Thread Amitabh Basu
Hi, Thanks for ur help, I would like to know if there is any way by which i can insert the existing document at specific location of mu current document. iam writing to my current document using PdfWriter class of com.lowagie.text.pdf.PdfWriter package Thnaks Amitabh

Re: [iText-questions] Concatenating two pdfs.

2004-02-27 Thread jean-philippe . belanger
for (int i = 1; i <= reader.getNumberOfPages(); i++) writer.addPage(writer.getImportedPage(reader, i)); Jean-Philippe Bélanger CGI Amitabh Basu wrote: Hi, How can i concatenate two pdfs. provided on of the pdfs already exists on a pre-defined location of m/c har

Re: [iText-questions] PdfReader

2004-02-27 Thread karl wettin
On Thu, 26 Feb 2004 14:23:27 -0800 (PST) Matt Benson <[EMAIL PROTECTED]> wrote: > Ultimately the answer you're going to get is "use PdfBox And so I did. Thanks! -- karl --- SF.Net is sponsored by: Speed Start Your Linux Apps Now. Build and

[iText-questions] Concatenating two pdfs.

2004-02-27 Thread Amitabh Basu
Hi, How can i concatenate two pdfs. provided on of the pdfs already exists on a pre-defined location of m/c hard disk.. Any help in this direction will be highly appreciated Thanks & Regards Amitabh --- SF.Net is sponsored by

[iText-questions] Signature contents as hex chain

2004-02-27 Thread Luis Pascual Forner
Hi, I'm trying to add a signature dictionary to a PDF document. When I call the method "SignatureDict.setContents(byte[])" the "/Contents" field appears as a string (delimited by "(" and ")"), not as hexadecimal chain (a sequence of hexadecimal digits between "<" and ">"), as documented in "PDF

Re: [iText-questions] tag and getting page numbers for XHTML to PDF generation

2004-02-27 Thread Bruno
Quoting Gregory Johnston <[EMAIL PROTECTED]>: > I understand that the tag returns a > chapter/page number but its the first thing that > appears on the page, not where I need it. I don't understand the question, but maybe this is an answer you can use: http://www.lowagie.com/iText/tutorial/ch12.