[iText-questions] Printing a pdf document on server side

2002-03-20 Thread Venkatraman Shenoy
Hi, I am having a requirement where I have to print a pdf document located on the server. This will be a scheduled process and hence no human interaction. I plan to create this document using IText. Can anybody help. Venkat

Re: [iText-questions] Thumbnails from PDF

2002-03-20 Thread Markus Pallo
Hello, we use imagemagick (convert) and ghostscript. www.imagemagick.org They also have a Java Wrapper. Markus On Wednesday 20 March 2002 12:13, Birkelbach, Carsten wrote: > Is there a way using iText to generate a thumbnail ( jpeg, gif or png ) > from an existing PDF? > > If this isn't

RE: [iText-questions] adding a Table to a Cell ignores colspan

2002-03-20 Thread Joachim F. Petzold
John, I don't have trouble using colspan with nested tables. This is the code I am using: PdfPTable oTable = new PdfPTable(4); PdfPTable oNestedTable = new PdfPTable(8); ... ... ... PdfPCell oCell = new PdfPCell(oNestedTable); oCell.setCospan(3); oTable.addCell(oCell); Everything works as expe

[iText-questions] adding a Table to a Cell ignores colspan

2002-03-20 Thread John Watson
I love being able to add a Table to a Cell now. But, when I do this, the colspan on the Cell gets ignored. Is this intended, or an unintended side-effect? Thanks! John ___ iText-questions mailing list [EMAIL PROTECTED] https://lists.sourceforge.

[iText-questions] Re: Fonts Bug

2002-03-20 Thread Mark
On Wednesday 20 March 2002 15:52, you wrote: > Paulo has already sent me code that fixes the problem. > You can now ask a BaseFont getFamilyName() this returns > a two dimensional array (just like getFullFontName()). > The code is in CVS, but I'll have to wait to work further > on it, because Paul

[iText-questions] Re: HeaderFooter and extra page problem

2002-03-20 Thread bruno
Wilson AJ writes: > It seems to me that it is caused by the two newPage() calls at the start > of the PdfDocument close() method. Does anyone know why these are there? Short answer, just to tell you that I have not forgotten your mail. I think the two newPage()-calls were added because of image

[iText-questions] corrupt archives

2002-03-20 Thread bruno
I tried to release iText0.89, but I am experiencing problems with SourceForge: https://sourceforge.net/tracker/index.php?func=detail&aid=532466&group_id=1&; atid=21 ___ iText-questions mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/

[iText-questions] Re: SAXmyHtmlHandler

2002-03-20 Thread bruno
Painter, Matthew writes: > Hi, > > As part of a PDF report that's being generated by software that I am working > on, a small amount of HTML data is parsed and inserted into the document. > Ideally, this text should be placed in a cell in order to preserve alignment > with the rest of the repor

[iText-questions] Re: Complex structures arranged in columns: pos sible?

2002-03-20 Thread bruno
Paulo Soares writes: > There's no ready-made solution but with ColumnText and PdfPTable it > shouldn't be that difficult. There is an example in the tutorial: http://www.lowagie.com/iText/tutorial/ch10.html#abspdfptable http://www.lowagie.com/iText/examples/Chap1012.java http://www.lowagie.com/i

RE: [iText-questions] Thumbnails from PDF

2002-03-20 Thread Paulo Soares
> -Original Message- > From: Birkelbach, Carsten [SMTP:[EMAIL PROTECTED]] > Sent: Wednesday, March 20, 2002 11:14 > To: [EMAIL PROTECTED] > Subject: [iText-questions] Thumbnails from PDF > > Is there a way using iText to generate a thumbnail ( jpeg, gif or png ) > from an existin

[iText-questions] Re: easy one - text wrapping in a cell?

2002-03-20 Thread bruno
[EMAIL PROTECTED] writes: > Hi all, > > I'm using iText to generate a PDF that contains some user > entry text. For some reason the text seems to over-type rather > than wrap when the text is too large for a cell. How do I avoid > this when I do not know where to add a "\n"? is there a method

RE: [iText-questions] Using the PdfReader(byte[]) constructor

2002-03-20 Thread Paulo Soares
The solution is not to use a DataInputStream. From the DataInputStream documentation: Data input streams and data output streams represent Unicode strings in a format that is a slight modification of UTF-8. Use a FileInputStream. Best Regards, Paulo Soares > -Original Message- > From:

RE: [iText-questions] Complex structures arranged in columns: possible?

2002-03-20 Thread Paulo Soares
There's no ready-made solution but with ColumnText and PdfPTable it shouldn't be that difficult. Best Regards, Paulo Soares > -Original Message- > From: [EMAIL PROTECTED] [SMTP:[EMAIL PROTECTED]] > Sent: Tuesday, March 19, 2002 23:41 > To: [EMAIL PROTECTED] > Subject: [iText-quest

RE: [iText-questions] easy one - text wrapping in a cell?

2002-03-20 Thread Paulo Soares
Try cell.setLeading(12). Best Regards, Paulo Soares > -Original Message- > From: [EMAIL PROTECTED] [SMTP:[EMAIL PROTECTED]] > Sent: Wednesday, March 20, 2002 11:04 > To: [EMAIL PROTECTED] > Subject: [iText-questions] easy one - text wrapping in a cell? > > Hi all, > > I'm using

[iText-questions] Thumbnails from PDF

2002-03-20 Thread Birkelbach, Carsten
Is there a way using iText to generate a thumbnail ( jpeg, gif or png ) from an existing PDF?   If this isn't possible: Know anyone a way to extract a thumbnail from PDF ( best case = pure java )? Mit freundlichem Gruß / kind regards Carsten Birkelbach --- Siemens AG Siemens Business Servi

[iText-questions] easy one - text wrapping in a cell?

2002-03-20 Thread Arann . Villing
Hi all, I'm using iText to generate a PDF that contains some user entry text. For some reason the text seems to over-type rather than wrap when the text is too large for a cell. How do I avoid this when I do not know where to add a "\n"? is there a method I should call to force the text to wrap?