[iText-questions] Re: extending of iText for merging pdf annotations

2004-09-12 Thread Bruno
I forward your question to the mailinglist, br, Bruno Quoting André Koppany <[EMAIL PROTECTED]>: > Hallo Bruno, > > first, your iText Library is a very very great work. Its very powerfull > and easy to use and offers a great way to > create nice pdf documents. > > My problem is, that I have th

RE: [iText-questions] FontFactory.getFont("Times", ...) needs codepage

2004-09-12 Thread David Thielen
Will FontFactory.contains() or FontFactory.isRegistered() tell me if I can get an IDENTITY_H font for that font? Or should I call getFont() with the code page first and if it returns a TrueTypeFont then try to get an IDENTITY_H font? Thanks - dave -Original Message- From: David Thielen

RE: [iText-questions] FontFactory.getFont("Times", ...) needs codepage

2004-09-12 Thread David Thielen
The italic part didn't surprise me - just that the getFont(... IDENTITY_H ...) didn't work. Is there a fast way to determine if for a font name I can get an IDENTITY_H font? What's hurting me is that it is a lot of processing time for it to throw the exception on the getFont() call when it can't m

Re: [iText-questions] FontFactory.getFont("Times", ...) needs codepage

2004-09-12 Thread Paulo Soares
- Original Message - From: "David Thielen" <[EMAIL PROTECTED]> To: "itext" <[EMAIL PROTECTED]> Sent: Sunday, September 12, 2004 17:01 Subject: [iText-questions] FontFactory.getFont("Times", ...) needs codepage > Hi; > > > > This code throws an exception: > > Font font = FontFactory.getF

Re: [iText-questions] 221 possible bugs in itext

2004-09-12 Thread Mark Hall
On Saturday 11 September 2004 03:55, David Thielen wrote: > I ran findbugs (http://findbugs.sourceforge.net > ) on itext and got the following list. > This reports based on rules so some of these things are almost certainly > false positives. But I'll bet some are

[iText-questions] FontFactory.getFont("Times", ...) needs codepage

2004-09-12 Thread David Thielen
Hi; This code throws an exception: Font font = FontFactory.getFont("Times", BaseFont.IDENTITY_H, true, 24.0, 2); This code gives me a font that is "Times-Italic": Font font = FontFactory.getFont("Times", "Cp1252", true, 24.0, 2); Any idea why I can't get the font when it's IDENTITY_H