Re: [iText-questions] PDF/X3

2007-03-17 Thread Leonard Rosenthol
I haven't checked it recently, but I believe that you'll find that the files that are created with that conformance set will pass preflights. If you find a case where that is NOT the case - please let us know. Leonard On Mar 17, 2007, at 7:13 PM, Bodo Teichmann wrote: > Hi, > > Bruno wrote

Re: [iText-questions] iText 2.0.1 - PdfPCell setRotatio n 90 -Disappearing text

2007-03-17 Thread Andrea Lombardoni
Paulo Soares consiste.pt> writes: > > If the nested table is rotated 90 or 270 you must set the nested table width > with setTotalWidth(). Thank you. That did not work, but I was able to make the nested table appear, by calling setFixedHeight(190.0f) on the containing cell (c

Re: [iText-questions] PDF/X3

2007-03-17 Thread Bodo Teichmann
Hi, Bruno wrote: Peyman Pouryekta wrote: How can I create a PDF/X3 with iText ? When you create a PDF with iText, you use a PdfWriter instance: PdfWriter writer = PdfWriter.getInstance(document, os); If you want to create a PDF conforming to PDF/X3, you need to add this line: write.setPDFXConf

[iText-questions] novice

2007-03-17 Thread ftwong
I have a invoice.pdf file that I fill out, but I want to add a page along with a table of detail information. My code runs searches a database for line items and builds a PdfTable as well as accumulates the grand total. I am able to fill out the invoice with the grand total, but am running into

[iText-questions] (no subject)

2007-03-17 Thread maxime bocchi
Good morning, I'm sorry if it is not writted correctly, it's because i'm french I would like to align two PdfPTables. I've tried to do it with MultiColumnText but the result is not correct. Is it possible to make a file like that : |

Re: [iText-questions] iText 2.0.1 - PdfPCell setRotation 90 -Disappearing text

2007-03-17 Thread Paulo Soares
If the nested table is rotated 90 or 270 you must set the nested table width with setTotalWidth(). Paulo - Original Message - From: "Andrea Lombardoni" <[EMAIL PROTECTED]> To: Sent: Saturday, March 17, 2007 3:15 PM Subject: [iText-questions] iText 2.0.1 - PdfPCell setRotation 90 -Disapp

Re: [iText-questions] Color looks different after drawing particular image types

2007-03-17 Thread Bill Ensley
gif and png offer transparency, jpg and bmp do not, your color mode in Graphics2D is affected by whether or not you have transparency. This affects all elements, not just the transparent ones. -Bill ensley www.bearprinting.com Peter van Raamsdonk wrote: Hi, I don't know if this is itext re

[iText-questions] iText 2.0.1 - PdfPCell setRotation 90 - Disappearing text

2007-03-17 Thread Andrea Lombardoni
There seems to be a problem with nested PdfPTable and PdfPCell setRotation. When running the following example, a table with no content is generated. If the setRotation is changed to 180 or removed completely, the the output is correct. import java.io.FileOutputStream; import com.lowagie.text.D

Re: [iText-questions] Column text Question.

2007-03-17 Thread kkdusi
>Thats not what Paulo means, your ColumnText has no dimensions, you need to be doing something like this:- >ct.setSimpleColumn(0, 0, width, height); I was thinking its the settings for pdf. page size. I will change the progrm and let you all know. -- View this message in context: http://www.na

Re: [iText-questions] Color looks different after drawing particularimage types

2007-03-17 Thread Paulo Soares
Do you have transparency? Paulo - Original Message - From: "Peter van Raamsdonk" <[EMAIL PROTECTED]> To: Sent: Saturday, March 17, 2007 10:11 AM Subject: [iText-questions] Color looks different after drawing particularimage types > Hi, > > I don't know if this is itext related or sim

[iText-questions] Color looks different after drawing particular image types

2007-03-17 Thread Peter van Raamsdonk
Hi,   I don't know if this is itext related or simple in the pdf.   I use the pdfgraphics2d and paint images loaded by ImageIO. If I fill a simple rectangle with an color the color 'visually' changes (darkens) in the pdf when I draw an image with a different colormodel like in gif or png. In fact a

Re: [iText-questions] PDFContentByte.restoreState error

2007-03-17 Thread Paulo Soares
- Original Message - From: "xuezhong wang" <[EMAIL PROTECTED]> To: Sent: Saturday, March 17, 2007 3:49 AM Subject: [iText-questions] PDFContentByte.restoreState error > Hello IText Experts, > > I am using IText to create a PDF document which > contains about 18 pages. Each page has

[iText-questions] PDFContentByte.restoreState error

2007-03-17 Thread xuezhong wang
Hello IText Experts, I am using IText to create a PDF document which contains about 18 pages. Each page has a JPEG image on it. PDFContentByte.addImage is called to place the image onto the document.Before it is called, pdfContentByte.saveState() is called. After PDFContentByte.addImag