Re: [iText-questions] Line spacing

2004-03-09 Thread Bruno
Quoting Ben Rometsch <[EMAIL PROTECTED]>: > Hi There, > > Is it possible to change the spacing between two paragraphs or after a > line break? That spacing is called 'leading' and it can be changed with setLeading(int); br, Bruno --- This SF

[iText-questions] Chinese Character in 'HTML to PDF'

2004-03-09 Thread Raymond Kong
I tried to convert HTML into PDF using itext. However the chinese character (in unicode ) was not able to be converted to PDF normal. How can I acheive it? As I learned from the document, I only found the information about inserting Asia character into PDF. Thanks a lot! B. Regards ---

[iText-questions] Page Break Problem

2004-03-09 Thread Srinivasan V
Hi , I am using PdfPTable to display say thousands of records. I dont know how to page break in order to display next set of record. I tried but its displaying in the same page. help me out ASAP. regards, Srinivasan V --- This SF.Net email is

[iText-questions] Linearization - Byteserving

2004-03-09 Thread Fabian Pie
Hi, Where could we find info about linearization (byteserving) ? Is it planned to support that in itext ? Regards, Fabian --- This SF.Net email is sponsored by: IBM Linux Tutorials Free Linux tutorial presented by Daniel Robbins, President and

[iText-questions] Line spacing

2004-03-09 Thread Ben Rometsch
Hi There, Is it possible to change the spacing between two paragraphs or after a line break? For example, if my code reads: Cell fundName = new Cell(); fundName.setBorderWidth(0); Font font = new Font(verdana, 14); Phrase phrase = new

[iText-questions] Peculiar problem with including images

2004-03-09 Thread Pradeep Shekade
Hi,   We have a servlet which uses iText classes to create pdf which is then sent to the browser as a stream.   The problem is that the moment we include images in the pdf, the browser does not launch the pdf application but instead shows the pdf encoded text.   I have been going thru the documenta

RE: [iText-questions] Generating an PDF from a Servlet

2004-03-09 Thread Sherlock Simon
If you follow the link on http://www.lowagie.com/iText/ to the onJava article you can read how to do it and download the sample app.   Simon -Original Message-From: Luis Velando [mailto:[EMAIL PROTECTED]Sent: 09 March 2004 18:22To: [EMAIL PROTECTED]Subject: [iText-question

RE: [iText-questions] Generating an PDF from a Servlet

2004-03-09 Thread Karr, David
Title: Message From the main site, click on the "Download" link and download the "examples.tar.gz" file.  Don't follow the "examples" link, as that is apparently restricted (perhaps unintentionally).  You'll find several servlet examples here. -Original Message-From: [EMAIL

[iText-questions] Generating an PDF from a Servlet

2004-03-09 Thread Luis Velando
Hi, I'm new to iText, I would like to have some information in how to generate an PDF from a Servlet. I try to get info from the FAQ but I did not find any samples. Thank You in Advance

RE: [iText-questions] XML to PDF conversion...

2004-03-09 Thread Bruno
Christian Lauer has done some nice XML to PDF work with UJAC: http://ujac.sourceforge.net/ Quoting webguy <[EMAIL PROTECTED]>: > XML to PDF conversion...Don't know alot about itext , but I would imagine > the xml-pdf has been drop because of all the work being done in xsl-fo > projects > > e.g.

[iText-questions] Setting Headers via XHTML - pls gnore the preceeding mail :(

2004-03-09 Thread Gregory Johnston
Hi, I'm dynamically creating XHTML using XLST, then converting it to a PDF using iText. I want to be able to set the header for the genereated PDF. I created a custom HTML tag, and modified the SAXiTextHandler as follows; public void handleEndingTags(String name) { ... if('header tag')

[iText-questions] Setting Headers and Footers via HTML

2004-03-09 Thread Gregory Johnston
Hi, I'm dynamically creating a XHTML using XLST, then the XHTML is converted to a PDF using iText. I want to be able to set the header for the genereated PDF, so I created a custom HTML tag, and modified the SAXiTextHandler class. When a tag is parsed the associaso that when a tag occurs it t

RE: [iText-questions] XML to PDF conversion...

2004-03-09 Thread webguy
Title: XML to PDF conversion... Don't know alot about itext , but I would imagine the xml-pdf has been drop because of all the work being done in xsl-fo projects   e.g. http://xml.apache.org/fop/ etc...   Justin     -Original Message-From: [EMAIL PROTECTED] [mailto:[EMAIL

RE: [iText-questions] 90 degrees rotated text in a Cell?

2004-03-09 Thread Poupaert Erik
Title: 90 degrees rotated text in a Cell? Hi David   I would use PdfPTable, were it not that PdfPTable doesn't support rowspan/colspan (everything has already been written using rowspan/colspan, so I would have to rewrite all of that), and setOffset() (or setLeading()) isn't supported either

[iText-questions] XML to PDF conversion...

2004-03-09 Thread Pradhan, Saket
Title: XML to PDF conversion... All, I saw on the itext website that XML to PDF conversion has been discontinued for some time ? 1. Is it correct ? What was the reason for discontinuing this feature ? 2. Will we have this support in near future ? I need this answer quickly so I would a

RE: [iText-questions] Vertical alignment in table cells

2004-03-09 Thread Poupaert Erik
Title: RE: [iText-questions] Vertical alignment in table cells >>> Page events work well for me. Can you prepare a small sample with the problem? Thanks for your help, but I think I've got it now. "onEndPage" actually doesn't really mean "onEndPage", but rather "onPageBreak". Therefore, w

RE: [iText-questions] define line space

2004-03-09 Thread Paulo Soares
Paragraph.setLeading() From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED]Sent: Tuesday, March 09, 2004 9:38 AMTo: [EMAIL PROTECTED]Subject: [iText-questions] define line space Hi, Can anybody explain me, how I can define the line space?

RE: [iText-questions] how to append pdf file

2004-03-09 Thread Paulo Soares
You can import pages from other PDFs and place them in your document. Best Regards, Paulo Soares > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On > Behalf Of fflgy > Sent: Tuesday, March 09, 2004 12:21 PM > To: [EMAIL PROTECTED] > Subject: [iText-questions]

RE: [iText-questions] 90 degrees rotated text in a Cell?

2004-03-09 Thread Paulo Soares
Title: 90 degrees rotated text in a Cell? You can know the cell position in a PdfPTable with PdfPTableEvent or PdfPCellEvent.   Best Regards, Paulo Soares From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Poupaert ErikSent: Tuesday, March 09, 2004 1:34 PMTo: '[

RE: [iText-questions] spacing between paragraphs

2004-03-09 Thread Paulo Soares
If only thing were that easy... Currently the paragraph processing is a can of worms, change something here and something else will break. If you do the code changes we'll consider it's inclusion. Best Regards, Paulo Soares > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL

RE: [iText-questions] Rotate pages

2004-03-09 Thread Paulo Soares
iText handles the page rotation correctly. Check that you have the latest GS version.   Best Regards, Paulo Soares From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Carmona Perez, DavidSent: Tuesday, March 09, 2004 2:46 PMTo: Itext-Questions (E-mail)Subject: RV

RV: [iText-questions] Rotate pages

2004-03-09 Thread Carmona Perez, David
Dear iTexters,   I've checked that iText handles page rotation in Rectangle.rotate() by actually rotating the page.   I've read in Ghostscript something about DSC (Document Structuring Convention), for specifying page rotation.   Does iText handle this?  Do I need DSC? I don't know enoug

[iText-questions] 90 degrees rotated text in a Cell?

2004-03-09 Thread Poupaert Erik
Title: 90 degrees rotated text in a Cell? When creating a Table with Cell objects, I can create cells with each a chunk embedded. Apparently, I can't indicate directly that they chunk must be rotated? At the same time, I can write a rotated text to absolute coordinates, directly on the conte

Re: [iText-questions] PDF documents created by iText 1.02b doesn't look as good as with 1.00

2004-03-09 Thread Maarten Coene
Hi, JFreeChart was indeed adding some opaque lines to the chart. After removing these lines, the PDF documents looked fine. Thanks! Maarten --- This SF.Net email is sponsored by: IBM Linux Tutorials Free Linux tutorial presented by Daniel R

[iText-questions] spacing between paragraphs

2004-03-09 Thread Maarten Coene
Hi, Is it possible to extend the Paragraph API to allow users to define some empty spacing before and after a paragraph. I know this can be done by adding an empty paragraph with some leading before and after the normal paragraph, but it's not always that easy. For instance, I have a method ad

[iText-questions] how to append pdf file

2004-03-09 Thread fflgy
hi ,I have a question about using iText,it's how to write a lots code which can append a existing pdf file; __ ×¢²áÐÂÀË9Õ×Ãâ·ÑÓÊÏ䣨 http://mail.sina.com.cn/chooseMode.html £© === ´î³Ë»ÝÆÕ"²ÊÉ«ÉÌ

[iText-questions] Rotate pages

2004-03-09 Thread Carmona Perez, David
Hi all,   I generate files with mixed portrait / landscape pages. On one hand, Acrobat Reader prints these files ok but need the auto-rotate and center option checked. On the other hand, GhostScript and many other programs have problems with it when printing (landscape pages are cropped an

RE: [iText-questions] Re: [Fwd: RE: Possible iText License Violation]

2004-03-09 Thread Paulo Soares
> -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On > Behalf Of Bruno Lowagie > Sent: Tuesday, March 09, 2004 10:20 AM > To: [EMAIL PROTECTED]; [EMAIL PROTECTED] > Subject: [iText-questions] Re: [Fwd: RE: Possible iText > License Violation] > > @veryPDF Supp

[iText-questions] Re: [Fwd: RE: Possible iText License Violation]

2004-03-09 Thread Bruno Lowagie
@veryPDF Support wrote: Hi, Bruno, Thank you for your explain about the LGPL, I'm very glad to comply with the LGPL/MPL license. I think some cosmetic changes will do the trick. The PDF Split-Merge software is 'sold' under the LGPL license, the PDF Editor Toolkit Pro version contain the GPL'e

[iText-questions] define line space

2004-03-09 Thread c . kleine
Hi, Can anybody explain me, how I can define the line space? thanx

[iText-questions] I have a question in iText.

2004-03-09 Thread Piyanai Kaenmee (ADD : G-Able)
“You may have noticed that when a table is split, some borders seem to be missing. This is because cells that are completely drawn on the previous page, are not transfered to the next page. They are gone and their border isn't drawn.”   I saw this message in itext-tutorial, I want to know

[iText-questions] Re: Possible iText License Violation

2004-03-09 Thread Bruno Lowagie
Addendum: XueHeng just forwarded me the mail Paulo had sent him in december 2003 (with a CC to me, but I don't keep mails that contain standard answers). It wasn't forwarded to the mailinglist (maybe we should do this to avoid misunderstandings in the future), but as I already said: this is the

[iText-questions] [Fwd: RE: Possible iText License Violation]

2004-03-09 Thread Bruno Lowagie
Hello all, I received a mail from verypdf in response to the mailing-list post. People ask me all the time if they can use iText in a commercial context and the answer is always 'yes' as long as the LGPL and/or MPL license is obeyed. I searched the archives at GMANE, but I didn't find the mail f

Re: [iText-questions] Questions about generate RTF using servlet with itext

2004-03-09 Thread Mark Hall
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Monday 08 March 2004 12:12, Frankie Poon wrote: > what is the problem of the servlet setup? > any tips ? I couldn't say from the stack trace. Perhaps there is some java class dependancy problem. You could try recompiling all of your classes. You c

[iText-questions] rotate and translate pdf

2004-03-09 Thread Priya Packrisamy
Hi, I am trying to rotate a pdf document (90,180,270 and 360). I am using the PdfContentByte.addTemplate(...) method. When I rotate the document, the content goes out of the page. How do I avoid this? Is there any method similar to image.scaleToFit() for page? Thanks Priya __

[iText-questions] Change the default leading of a document

2004-03-09 Thread Jim Song
The default spacing between lines is 1.5*font size. How do I change it to be 1 * font size? Thanks --- This SF.Net email is sponsored by: IBM Linux Tutorials Free Linux tutorial presented by Daniel Robbins, President and CEO of GenToo technolo

[iText-questions] Re: Possible iText License Violation

2004-03-09 Thread Bruno
Quoting Tim Sullivan <[EMAIL PROTECTED]>: > Hi Bruno, > > My name is Tim Sullivan and I am the CEO of activePDF, Inc.. I am writing > this email to shed some light on a possible infringer of your copyright with > "iText". > > As we find "competitors" on the landscape, we try to audit their soft