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] Re: java.lang.outofmemory

2005-02-28 Thread bodo teichmann
did you start itext with java commandline option e.g. : "-Xmx128m" or "-Xmx256m" to give java more memory ? otherwise the default maximum memeory is only 64m , which is obviousely not enough for your document. bodo Paulo Soares schrieb: Only by having more memory. There's no workaround. - Or

[iText-questions] Re: Reading PDF Image Objects

2005-02-28 Thread bodo teichmann
better use pdfbox (->sourcefoge) for this. bodo Youssef Eldakar schrieb: I am interested in reading image objects from PDF files and determining their resolution and whether they are color or black-and-white. Is there a direct way to do this using PdfReader? Youssef Eldakar Bibliotheca Alexandrin

[iText-questions] Re: why is PdfGraphics2D using cb.showText(s) instead of cb.showTextKerned(s) ?

2005-01-11 Thread bodo teichmann
post it all here, but if anyone is interested I will be glad to forward along what I have learned. Bill Ensley Bear Printing -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of bodo teichmann Sent: Friday, January 07, 2005 3:51 AM To: itext-questions@lists.

[iText-questions] Re: why is PdfGraphics2D using cb.showText(s) instead of cb.showTextKerned(s) ?

2005-01-07 Thread bodo teichmann
To: bodo teichmann; itext-questions@lists.sourceforge.net Subject: RE: [iText-questions] why is PdfGraphics2D using cb.showText(s) instead of cb.showTextKerned(s) ? It's a design option. The pdf and the awt spacing will not match in any case. -Original Message- From: [EMAIL PROT

[iText-questions] why is PdfGraphics2D using cb.showText(s) instead of cb.showTextKerned(s) ?

2004-12-30 Thread bodo teichmann
just wondering ,why PdfGraphics2D seems to ignore the font's kerning ? and why does it use FontMetrics fm = getFontMetrics(); double width = fm.stringWidth(s); instead of this: double mywidth = baseFont.getWidthPointKerned(s,fontSize); or double mywidth = baseFont.getWidthPoint(s,fontSize);

[iText-questions] Re: type1 font and unicode

2004-12-30 Thread bodo teichmann
It works for 256 chars at a time, that's why there's an encoding. - Original Message - From: "bodo teichmann" <[EMAIL PROTECTED]> To: Sent: Wednesday, December 29, 2004 8:34 PM Subject: [iText-questions] Re: type1 font and unicode Hi, i don't understand how that sh

[iText-questions] Re: type1 font and unicode

2004-12-29 Thread bodo teichmann
for all unicode characters , or are there any limitations ? Bodo Paulo Soares schrieb: You don't need unicode and can't have in T1 fonts. If you use BaseFont.MACROMAN you have access to those charactres. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On

[iText-questions] type1 font and unicode

2004-12-29 Thread bodo teichmann
hi, is there any possiblity to use unicode with type1 fonts ? the thing is: we only have type1 fonts but need to encode special unicode characters such as german ligatures "fl" and "fi" and others that are available only with unicode encoding. bodo --

[iText-questions] horizontal scaling, character spacing , wordspacing supported ?

2004-07-28 Thread Bodo Teichmann
hi, does iText support these pdf features : horizontal scaling, character spacing , word spacing ? Bodo --- This SF.Net email is sponsored by BEA Weblogic Workshop FREE Java Enterprise J2EE developer tools! Get your free copy of BEA WebLogic Work

Re: [iText-questions] handout_pdf.java buggy?

2004-07-16 Thread Bodo Teichmann
ahh!  i totally missunderstood the intend of handout. sorry for that . i thougt its just a n page to m pages mapping tool. bodo Bruno schrieb: Quoting Bodo Teichmann <[EMAIL PROTECTED]>: hi, i just downloaded itext1.02b and run the handout_pdf.java example, seems a litt