Re: [iText-questions] PDF/A: Missing metadata entry for fonts

2008-09-17 Thread armus
Thanks for the fast response. "intarsys PDF/A-Check" said it is a warning not an error. Possible that the warning is wrong but can I add the font metadata with itext? Armus Leonard Rosenthol wrote: > > PDF/A-1b does not require font metadata. ONLY PDF/A-1a requires it. > > Leonard > > On Sep

Re: [iText-questions] PDF/A: Missing metadata entry for fonts

2008-09-17 Thread Leonard Rosenthol
PDF/A-1b does not require font metadata. ONLY PDF/A-1a requires it. Leonard On Sep 17, 2008, at 5:50 PM, armus wrote: > > Hello, > > I'm using itext to create PDF/A 1b files. I'm validating these files > with > "intarsys PDF/A-Check" a free online pdf/A validator. > (http://www.intarsys.de/pr

[iText-questions] Dynamic table issue

2008-09-17 Thread anjaliv9
I have a template which has some info on the page like the type of report and other person details and then a table with the headers with a single row. I have to read the template and fill out the necessary details in the required fields and then add the additional rows to the table depending on

[iText-questions] PDF/A: Missing metadata entry for fonts

2008-09-17 Thread armus
Hello, I'm using itext to create PDF/A 1b files. I'm validating these files with "intarsys PDF/A-Check" a free online pdf/A validator. (http://www.intarsys.de/produkte/pdf-a-live/pdf-a-check-1) (a german homepage) The result is: 0 Errors 1 Warning Font CourierNewPSMT without valid metadata en

Re: [iText-questions] pseudo-italic (transform) causing horizontal offset

2008-09-17 Thread irashkin
Ok, I'm still not sure how that would work, but I figured out the problem! I forgot that skew would affect the whole page, not just the line, so I was entering an italicization factor based on x=0,y=0, but when writing some text way up at y=304, for instance, my skew was much greater than I expect

Re: [iText-questions] PdfContentByte

2008-09-17 Thread Dean Krueger
Hi Paulo Could you show me in code? Or point out in the itext book, where I might look for an example? Here is what I have code wise for adding the space. private void AddSpace(){ for(int page = 1;page<=reader.NumberOfPages;page++){ PdfDictionary p = reader.Ge

[iText-questions] Underscore(_) appears in PDF when a newline tag is used

2008-09-17 Thread Yadav, Amit
Hi there, I am using Itext to generate a PDF from an HTML. I am getting the PDF but an underscore(_) appears whenever a newline tag is used. Below are the problem characteristics:- 1. I am using in the as a newline tag in the input HTML. 2. This problem is intermittent. Without maki

Re: [iText-questions] pseudo-italic (transform) causing horizontal offset

2008-09-17 Thread Paulo Soares
If you want to do all by yourself look at the code that I pointed to, all the transformations are there. If you want to let iText do the work for you use ColumnText.ShowTextAligned(), it supports PdfContentByte, and use a Font with a Font.ITALIC style, and the slanting will be done for free. Pa

Re: [iText-questions] pseudo-italic (transform) causing horizontal offset

2008-09-17 Thread irashkin
I also need PDFContentByte writing because I have to have absolute positioning for every element. irashkin wrote: > > Thanks for the quick reply! I didn't think I was able to use chunks with > PDfContentByte directly. Is that true? I have to use PDFContentByte (I am > pretty sure anyway...) beca

Re: [iText-questions] pseudo-italic (transform) causing horizontal offset

2008-09-17 Thread Paulo Soares
Look for Chunk.SKEW in PdfDocument.WriteLineToContent(). Paulo > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On > Behalf Of irashkin > Sent: Wednesday, September 17, 2008 3:20 PM > To: itext-questions@lists.sourceforge.net > Subject: [iText-questions] pseudo-i

Re: [iText-questions] Copyright, Eula and acknowledgement requirements for use within another product.

2008-09-17 Thread Paulo Soares
See http://itext.ugent.be/library/question.php?id=15. Paulo > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On > Behalf Of [EMAIL PROTECTED] > Sent: Wednesday, September 17, 2008 3:37 PM > To: itext-questions@lists.sourceforge.net > Subject: [iText-questions] Co

[iText-questions] Copyright, Eula and acknowledgement requirements for use within another product.

2008-09-17 Thread Rich.Derengowski
I am looking for a preferred acknowledgement wording for 1T3T within our product copyright notice and Eula. Are there any preferred wordings or requirements I don't see anything in the FAQ or the two archives I checked. http://www.1t3xt.com/about/copyright/index.php has the notice for using 1T

[iText-questions] pseudo-italic (transform) causing horizontal offset

2008-09-17 Thread irashkin
Hi, I am actually using iTextSharp, but I don't know if this problem is specific to iTextSharp or is a general problem (or misunderstanding by me) of iText. I am working with some embedded fonts that don't have italic options. So, to get around this, I am doing a skew transformation, and the ital

Re: [iText-questions] removing duplicate fonts

2008-09-17 Thread Paulo Soares
It's possible if you write the code to do it. Paulo > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On > Behalf Of mourad zamoun > Sent: Wednesday, September 17, 2008 3:10 PM > To: iText-questions@lists.sourceforge.net > Subject: [iText-questions] removing dupli

[iText-questions] removing duplicate fonts

2008-09-17 Thread mourad zamoun
How to remove duplicate fonts ? See you soon -- Mourad :) - This SF.Net email is sponsored by the Moblin Your Move Developer's challenge Build the coolest Linux based applications with Moblin SDK & win great prizes Grand pr

Re: [iText-questions] Could not find the XObject named 'Xf1'

2008-09-17 Thread Paulo Soares
You objects are too deeply nested and Acrobat 8 doesn't like it. I'm sure that you don't need all this nesting to combine the documents. Paulo > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On > Behalf Of jkrogma > Sent: Wednesday, September 17, 2008 2:33 PM >

[iText-questions] Modifing Metadata (Author, Title) in a PDF

2008-09-17 Thread Joël Rouiller
Dear reader, It's possible to modify the author and the title in the PDF meta-data with iText? When creating a new PDF it’s possible to set those values with PdfDocument.addAuthor(String) or PdfDocument.addTitle(String). How it’s possible to modify those fields in an existing document? I nee

Re: [iText-questions] turning color in bitonal image transparent

2008-09-17 Thread Paulo Soares
You can set a mask in Image to define what pixel colors will be transparent. This will depend on the colorspace. Paulo > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On > Behalf Of Mark Patterson > Sent: Tuesday, September 16, 2008 10:39 PM > To: itext-questio

Re: [iText-questions] Could not find the XObject named 'Xf1'

2008-09-17 Thread jkrogma
Hi, we are using iTextSharp (4.1.2) to merge bunches of PDF files into one single "normalized" PDF file, which means we scale and rotate every single page of every file to fit to A4/portrait format. Opening the resulting PDF files with Adobe Reader 7 is working fine. Opening the same file with Ac