[iText-questions] Font embedding in PDF/A and related license issue..

2011-08-18 Thread myworld.amol
Hello Support, I am trying to generate PDF/A-1b file by using iText2.1.7 jar. I am embedding fonts like, BaseFont bf = BaseFont.createFont(E:/Tomcat5/webapps/fonts/HELR45W.TTF, BaseFont.CP1252, BaseFont.EMBEDDED); where HELR45W.TTF is my Helvetica font TTF file. I am able

Re: [iText-questions] Font embedding in PDF/A and related license issue..

2011-08-18 Thread Leonard Rosenthol
If the font is a TrueType font (as it appears to be from the .TTF), then it contains a flag in it that says I can be embedded (or I can not be embedded). iText (AFAIK) will respect that flag when embedding. So if the font was embedded - then you're fine! On 8/18/11 2:52 AM, myworld.amol

Re: [iText-questions] Font Embedding

2008-05-23 Thread 1T3XT info
Roger Misteli wrote: Hi I'm trying to embed a font into a PDF that doesn't have any fonts embedded. The problem is.. how do I get the file name of the font? So you have a PDF with a font that isn't embedded. This font has a name. Now you want to retrieve the file name. However, PDF doesn't

[iText-questions] Font Embedding

2008-05-22 Thread Roger Misteli
Hi I'm trying to embed a font into a PDF that doesn't have any fonts embedded. Using the demo sample DumpFontNames, I could get a list of the font names that were missing. So far so good. Now, to embed the font, Paulo wrote a little sample code

[iText-questions] Font Embedding

2008-03-17 Thread charles chandran
Hi Experts, Can anyone tell me how to embed the font, i mean if the arial font is there in pdf, while using acrobat viewer alerting me with FontException, so need to register these font factories and then save to another pdf. Is it possible with iText or anyother free java api.

Re: [iText-questions] Font Embedding

2008-03-17 Thread mister bean
There are many examples of embedding fonts in the tutorials on the site and in the book. If the you've copied the code and tried it with your own font and you get a font exception, then it's probably because the font you're using is not embeddable. If that's not the case, you should post the

Re: [iText-questions] Font embedding using xml

2007-12-15 Thread Bruno Lowagie
Fabio Masini wrote: Is possible to embed font into pdf using xml? Yes. Try it, and if it doesn't work: explain what you've tried and why you think it doesn't work. br, Bruno smime.p7s Description: S/MIME Cryptographic Signature

[iText-questions] Font embedding using xml

2007-12-14 Thread Fabio Masini
Is possible to embed font into pdf using xml? Thanks. _ Fabio Masini Software Engineering [EMAIL PROTECTED] Studio Pleiadi S.r.l. [progetti multimediali] Via Cairoli 35 - 47023 Cesena - FC - Italy tel 0547 613886 - fax 0547 612899

[iText-questions] Font Embedding

2007-06-21 Thread Lars Nagel (Trium)
Hi all, I want to build a PDF/A document and tried to embed the Helvetica font (see code below), but when I check whether the font is embedded using BaseFont.isEmbedded(), false is returned. And the PDF Longlife (Trial Version) Validator of Seal Systems also indicates that the font Helvetica

Re: [iText-questions] Font Embedding

2007-06-21 Thread Paulo Soares
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Lars Nagel (Trium) Sent: Thursday, June 21, 2007 2:05 PM To: itext-questions@lists.sourceforge.net Subject: [iText-questions] Font Embedding Hi all, I want to build a PDF/A document

Re: [iText-questions] Font Embedding Question

2006-10-04 Thread Paulo Soares
: Tuesday, October 03, 2006 7:29 AM To: Post all your questions about iText here Subject: [iText-questions] Font Embedding Question Hello All, I am reading a configuration file which can contain the name of the font to be used. At the startup of my code I register all the fonts in my

[iText-questions] Font Embedding Question

2006-10-03 Thread Abhishek Srivastava
Hello All, I am reading a configuration file which can contain the name of the font to be used. At the startup of my code I register all the fonts in my fonts directory using the font factory class and use the font name which has been specified in the configuration file. I also want toembed the

[iText-questions] Font embedding is slow

2006-04-18 Thread Bert Vingerhoets
Hi, Our company uses iText for generating PDF documents and we have noticed that, when embedding fonts, the overhead for creating a new document is very large. Take a look at the following times (obtained with test documents containing six different fonts): small output (139 pages) in a single

Re: [iText-questions] Font embedding is slow

2006-04-18 Thread Leonard Rosenthol
At 07:42 AM 4/18/2006, Bert Vingerhoets wrote: Our company uses iText for generating PDF documents and we have noticed that, when embedding fonts, the overhead for creating a new document is very large. Take a look at the following times (obtained with test documents containing six different

Re: [iText-questions] Font embedding is slow

2006-04-18 Thread Bert Vingerhoets
Thank you for your suggestions. Full embedding of fonts slows the process down even more: I get 7.5 pps (was 12 pps for subset embedding). I am indeed writing each page separately as I go, but the overhead of creating a file and performing initializing stuff is minimal as this also happens in

Re: [iText-questions] Font embedding is slow

2006-04-18 Thread Leonard Rosenthol
At 10:49 AM 4/18/2006, Bert Vingerhoets wrote: Full embedding of fonts slows the process down even more: I get 7.5 pps (was 12 pps for subset embedding). Yes, if you are writing each page separately - I am sure! Don't do that! I am indeed writing each page separately as I

[iText-questions] Font Embedding (Math symbols)

2003-10-14 Thread Norman Hendrich
Hello, last week, one user of my Java-written jfig graphics editor asked me about a pure-Java PDF export option and pointed me to the itext project. I just hacked a simple class that interfaces jfig to itext via the PDFGraphics2D approach - and basic rendering including all line attributes and

RE: [iText-questions] Font Embedding (Math symbols)

2003-10-14 Thread Paulo Soares
-Original Message- From: Norman Hendrich [SMTP:[EMAIL PROTECTED] Sent: Tuesday, October 14, 2003 14:42 To: [EMAIL PROTECTED] Subject: [iText-questions] Font Embedding (Math symbols) Hello, last week, one user of my Java-written jfig graphics editor asked me about