Re: [iText-questions] iText and OS X Server

2005-01-28 Thread David Teran
Hi, this has nothing to do with osxserver. Its quite simple: your application tries to use java.awt which in turn tries to connect to the window server. If user 'appserver' is not logged in, then user 'appserver' cannot connect to the window server, only root can do this if 'he' is not logged in.

Re: [iText-questions] Re: signing 10 MB sized pdf document

2005-01-16 Thread David Teran
did you try a java - profiler like jprofiler? This helped me long time ago to make some optimizations to itext. regards, David Am 14.01.2005 um 15:55 schrieb Wahaj: Yeah even after an explicit gc( ). Yes it comes down but a bit I mean i tried to sign a 10 MB file where the application took 20 MB

[iText-questions] overprinting black color?

2003-12-08 Thread David Teran
Hi, we are using itext to generate cmyk pdf's with text and cmyk images. When the text is black we need to do 'overprinting'. Is this supported by itext? regards David --- This SF.net email is sponsored by: SF.net Giveback Program. Does Sou

Re: [iText-questions] Hello

2002-06-21 Thread David Teran
rid of this Problem.. Thanking you    Contact Me : Kamalnath Chandrasekaran An Der schanz:2 Bei Scharf Aachen.52064 Gemany. Do You Yahoo!? Sign-up for Video Highlights of 2002 FIFA World Cup --- David Teran cluster9, David Teran Juedenstrasse 13 37073 Goettingen Germany Mail: [EMAIL

[iText-questions] modification in PdfAcroForm

2002-06-20 Thread David Teran
Hi Bruno, Paulo, we have modified PdfAcroForm a little bit (nearly every add... method returns the PdfFormField) and it would be great if you or Bruno could add this modification to the CVS repository. This was needed to further modify and / or have a reference to the generated PdfFormField.

Re: [iText-questions] Performance

2002-06-20 Thread David Teran
--- > Sponsored by: > ThinkGeek at http://www.ThinkGeek.com/ > ___ > iText-questions mailing list > [EMAIL PROTECTED] > https://lists.sourceforge.net/lists/listinfo/itext-questions > > --- David Teran clus

Re: [iText-questions] Possible bug (or user newbie) - table, rowspan at the bottom

2002-06-18 Thread David Teran
>Bringing you mounds of caffeinated joy >>>> http://thinkgeek.com/sf<<< > > _______ > iText-questions mailing list > [EMAIL PROTECTED] > https://lists.sourceforge.net/lists/l

[iText-questions] ImageMagick wrapper for java

2002-06-13 Thread David Teran
("Exception: " + ex); } } } } } On Friday, June 14, 2002, at 12:15 AM, morpheus Smith wrote: > That's what exactly i'm looking for.(actullay was > planning to write). > If you could send that , that would be a great help > f

Re: [iText-questions] Tool for creating images supported by Itext

2002-06-13 Thread David Teran
yes, try imagemagick. If someone is interested, we have written a wrapper that makes runtime calls and converts images on the fly. regards david On Thursday, June 13, 2002, at 11:41 PM, morpheus Smith wrote: > Gif images created from photoshop, gimp and > photoeditor are not directly supported

[iText-questions] error while printing

2002-06-13 Thread David Teran
Hi, i have a pdf document that can be printed from Preview (Mac OS X application) but not with Acrobat Reader 5. When i try to print it with Acrobat Reader 5 i get the following error message from the printer (when turning detailed error log on), its a HP Laserjet 2100 tn ERROR: typecheck OFF

Re: [iText-questions] PDF Parsing Problem

2002-05-26 Thread David Teran
Hi, hm, did you really try to read a HTML file with PdfReader??? According to the API docs this is nothing that PdfReader supports. If there would be a class named PdfHtmlReader, then i also would think that the class may be able to parse an HTML file and produce PDF, but a class with a name P

Re: [iText-questions] auto-printing from acrobat reader

2002-05-23 Thread David Teran
Just take a look at the PdfActions and PdfAnnotation, there you find the information (i think there is also an example in the tutorial) regards david On Thursday, May 23, 2002, at 03:09 PM, Ed Crotty wrote: > Auto-printing from acrobat reader is supposed to be possible using > javascript. Is

Re: [iText-questions] multiple form fields with the same name

2002-05-16 Thread David Teran
> The only way to change this would be to completely revamp how forms are >structured internally in a PDF file. They could do this, but it would break >compatibility with all older viewers :(. > Bad news, i wonder why they did it how its implemented now, it definitly is problematic when

Re: [iText-questions] multiple form fields with the same name

2002-05-16 Thread David Teran
This will not apply to radio button lists. Adobe should change this as soon as possible, because in HTML its normal to have multiple Checkboxes with the same name. regards, david On Thursday, May 16, 2002, at 12:38 PM, Carsten Frewert wrote: > Hi! > > I just discovered a way to crash Acrobat

Re: [iText-questions] hiding a form field by default

2002-05-06 Thread David Teran
t; > Best Regards, > Paulo Soares > > - Original Message - > From: "David Teran" <[EMAIL PROTECTED]> > To: <[EMAIL PROTECTED]> > Sent: Tuesday, April 30, 2002 19:04 > Subject: [iText-questions] hiding a form field by default > > >> Hi,

[iText-questions] hiding a form field by default

2002-04-30 Thread David Teran
Hi, just wondering how one could hide a form field by default. It should be a textfield which gets enabled by another trigger. kind regards david p.s. the form support is great! ___ iText-questions mailing list [EMAIL PROTECTED] https://lists.sourc

[iText-questions] precision of real numbers in pdf

2002-04-24 Thread David Teran
Hi, i noticed an example in PDF 1.4 reference using real numbers with more than two digits after the period. In iText, format double cuts off all except the first two digits after the period for number greater than 1 and lower than 32767. Is this the real maximum precision of PDF or just an i

[iText-questions] PdfFormField.createSignature

2002-04-23 Thread David Teran
Hi, what do we need to do if we want to add a signature to a pdf document, all the rest of the forms is working very very well. Thanks, david ___ iText-questions mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/itext-ques

Re: [iText-questions] form textfield question

2002-04-21 Thread David Teran
k this is possible. The edited text is kept in the > appearance, > hence there can be only one (just like the Highlander :-)). > > Best Regards, > Paulo Soares > > - Original Message - > From: "David Teran" <[EMAIL PROTECTED]> > To: <[EMAIL PROT

[iText-questions] could PdfAction.createHide(PdfObject o, boolean hide) be public?

2002-04-20 Thread David Teran
Hi, the subject says it already, i want to define a PdfAction, attach it to a PdfFormField when rollover to hide a PdfTemplate. Could this be possible with the action described above? Regards, david ___ iText-questions mailing list [EMAIL PROTECTED

[iText-questions] form textfield question

2002-04-20 Thread David Teran
Hi, is it possible to define two different PdfAppearance objects and assign them to a textfield (PdfFormField)? I would like to have a textfield that get "highlighted" when the user enters the field. I tried a lot of combinations of: myFormTextField.setWidget(new Rectangle(lx, ly

Re: [iText-questions] acro form question

2002-04-19 Thread David Teran
: > If you happen to create a complex form that you can share the form > creation > code, please do. Examples are needed in this area. > > Best Regards, > Paulo Soares > >> -Original Message- >> From:David Teran [SMTP:[EMAIL PROTECTED]] >> Se

Re: [iText-questions] acro form question

2002-04-19 Thread David Teran
n how to use it. > > Best Regards, > Paulo Soares > <> > > >> -Original Message- >> From:David Teran [SMTP:[EMAIL PROTECTED]] >> Sent:Friday, April 19, 2002 11:25 >> To: Paulo Soares >> Cc: [EMAIL PROTECTED] >>

Re: [iText-questions] acro form question

2002-04-19 Thread David Teran
ore ;-) > Best Regards, > Paulo Soares > >> -Original Message- >> From:David Teran [SMTP:[EMAIL PROTECTED]] >> Sent:Friday, April 19, 2002 1:24 >> To: [EMAIL PROTECTED] >> Subject: [iText-questions] acro form question >>

[iText-questions] acro form question

2002-04-18 Thread David Teran
Hi, i successfully create a radiobutton list according to the examples from Paulo, but i was not able to create a radionbutton list which is distributed over multiple pages. This is possible with Acrobat 5 (just tried it to do it manually) I spend now 6 hours ;-( and i tried everythink i coul

Re: [iText-questions] bugfix for David Teran

2002-04-16 Thread David Teran
Hi, you are right and i prefer your fix ;-) I will though check with a profiler if an additional cache would increase or decrease performance. regards, david On Tuesday, April 16, 2002, at 02:23 PM, Bruno Lowagie wrote: > Quoting David Teran <[EMAIL PROTECTED]>: > >> Hi

Re: [iText-questions] bugfix for David Teran

2002-04-16 Thread David Teran
Hi, thanks, it seems that i forgott to add the '-' if a number is negative. But i would prefer this fix, because it uses one String less ;-) regards, david /* * $Id: ByteBuffer.java,v 1.18 2002/03/05 14:56:32 blowagie Exp $ * $Name: $ * * Copyright 2000, 2001, 2002 by Paulo Soares. *

[iText-questions] another optimization question

2002-04-14 Thread David Teran
Hi, i do not know exactly if this would be possible, but it seems that about 80% of the byte[] created while making a pdf report with itext are allocated in BaseFonts convertToBytes method: return text.getBytes(encoding); which in turn gets called a lot of times from the method "getWidth" and

[iText-questions] german umlaut in bookmarks

2002-04-14 Thread David Teran
Hi, i tried to use special characters like german umlaut öäü in bookmarks. I added them to a string in unicode notation but they show up as a black box in Acrobat Reader 5 on Mac OS X. Is this normal or am i doing something wrong? regards, david _

Re: [iText-questions] optimizing formatDouble and append in ByteB uffer

2002-04-12 Thread David Teran
% less String : up to 70 % less StringBuffer : up to 95 % less This is the biggest improvement. regards, david > Best Regards, > Paulo Soares > >> -Original Message- >> From:David Teran [SMTP:[EMAIL PROTECTED]] >> Sent:Friday, April 12, 2002

Re: [iText-questions] optimizing formatDouble and append in ByteB uffer

2002-04-12 Thread David Teran
method should be overriden in the specific DocWriter classes * derived from this abstract class if they actually support the use of * pagenumbers. * * @param pageN the new page number */ public void setPageCount(int pageN) { } /** * Signals that the Document was closed and that

Re: [iText-questions] optimizing formatDouble and append in ByteB uffer

2002-04-12 Thread David Teran
wrong, but it should be possible to fix this, too. The overall performance is really very great when dealing with multipage documents. I will check it now, but if anyone has already a suggestion it would be great. regards, david > Best Regards, > Paulo Soares > >> -Orig

[iText-questions] optimizing formatDouble and append in ByteBuffer

2002-04-11 Thread David Teran
Hi, i played around with the profiling infos from the JVM and it turnes out that formatDouble creates a lot of temporary byte[] and char[] and String and StringBuffer's. I already implemented a simple cache and the overall speed of a 23 page report is 10% better, memory usage without garbage

[iText-questions] underline and strikethru

2002-04-03 Thread David Teran
Hi, how can i use underline and strikethru feature for PDF in conjunction with writer.getDirectContent()? I just saw "setFontAndSize" but this takes an BaseFont as argument and i did not find any hint on how to set underline and strikethru this this BaseFont. Also, the following code produces

Re: [iText-questions] iText0.90

2002-03-27 Thread David Teran
Hi, > - extending HTML parsing: parsing a CSS Does this mean that iText can parse HTML and convert it into PDF, currently without using CSS and soon with parsing CSS? regards, david ___ iText-questions mailing list [EMAIL PROTECTED] https://lists.so

[iText-questions] Forms and JavaScript

2002-02-25 Thread David Teran
Hi, is it possible to generate PDF Forms and if yes, could it be also possible to add javascript to the form fields? If no, is anyone already working on this? We need this feature and would like to work on this. regards, david ___ iText-questions m