[iText-questions] Possible bug in PdfDate?

2005-07-27 Thread Mark Nelson
Hello- I believe there may be a problem with PdfDate not respecting timezone offsets during Daylight Savings Time. For example, in the PdfDate constructor, it just uses the "raw" Calendar offset in the format: int timezone = d.get(Calendar.ZONE_OFFSET) / (60 * 60 * 1000); I believe it shou

[iText-questions] Re: HTMLWorker and ColumnText

2005-07-27 Thread Rebecca
Well now that's interesting. My htm page is created by manually renderining the asp.net controls and writing the output to a file. The span tags are being rendered from asp.net label controls, and as a whole in the webpage, the spans do work. isolated they do not. well, it partially works.

Re: [iText-questions] Print dialog

2005-07-27 Thread Chris Wilson
Hi Paulo, PdfWriter writer = ...; writer.setOpenAction(new PdfAction(PdfAction.PRINTDIALOG)); That's really useful, thanks! Could it be added to the examples documentation please? (alongside the javascript auto print example). Cheers, Chris. -- _ ___ __ _ / __/ / ,__(_)_ | Chris Wils

[iText-questions] Removing background color in checkboxes

2005-07-27 Thread Rosie Briggs
Dear iText developers:   I have been through several sources such as http://www.junlu.com/ and http://www.lowagie.com/iText/docs.html sites and found no solution to removing a background color in a checkbox. We are producing a PDF form with data on it. The blank form is read in as well as

Re: [iText-questions] Print dialog

2005-07-27 Thread Paulo Soares
Yes: PdfWriter writer = ...; writer.setOpenAction(new PdfAction(PdfAction.PRINTDIALOG)); - Original Message - From: "Marek Scholaster" <[EMAIL PROTECTED]> To: Sent: Wednesday, July 27, 2005 10:28 AM Subject: [iText-questions] Print dialog > Hello, > I'm considering using pdf (and iTex

Re: [iText-questions] Thumbnails in PDF with iText

2005-07-27 Thread Paulo Soares
You can't use the same image directly. Thumbnail images must be at most 106 by 106 pixels and the colorspace must be either DeviceGray or DeviceRGB, or an Indexed space based on one of these. - Original Message - From: "Markus Enders" <[EMAIL PROTECTED]> To: Sent: Wednesday, July 27, 200

Re: [iText-questions] problem in local links creation

2005-07-27 Thread Paulo Soares
Named destinations are not imported with the pages. Create your doc with PdfCopy and take note of the page positions. After the doc is creates open it and use PdfStamper to put the links. You can even use PdfStamper to add an empty first page. - Original Message - From: "waseem aslam" <[E

Re: [iText-questions] Thumbnails in PDF with iText

2005-07-27 Thread Xavier Le Vourch
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Markus Enders wrote: > > As our PDFs just consists of images placed on PDF-Pages (a single image > per page), I may use the same image to produce the thumbnail-image. Just > need to know how I add thumbnails ;-) setThumbnail() in PdfWriter() will i

Re: [iText-questions] iText RTF in word 6 (os/2 or windows 3.1)

2005-07-27 Thread Franco Biaggi
Hi, os/2 and win 3.1 use another codepage (850) than win2000 or xp. You can see the same with a .txt file. Jose Hurtado wrote: >Hello all, > >Well, I'm using iText for generating RTF file and it works fine. However, when >I >tried to see these RTFs in word 6 (os/2 and Windows 3.1) I'm having pro

[iText-questions] iText RTF in word 6 (os/2 or windows 3.1)

2005-07-27 Thread Jose Hurtado
Hello all, Well, I'm using iText for generating RTF file and it works fine. However, when I tried to see these RTFs in word 6 (os/2 and Windows 3.1) I'm having problems with special characters (for example, umlauts ä), it appears ?. I think that's because word 6 don't use unicode characters. The

Re: [iText-questions] Thumbnails in PDF with iText

2005-07-27 Thread Markus Enders
Hi Leonard, Leonard Rosenthol wrote: How many Acrobat 4 users do you have? The numbers from Adobe show that Acrobat 4 is less than 5% of entire Acrobat/Reader community. Are you sure that your people fall into that catagory? Enough to warrant this work? For us there is just one

[iText-questions] problem in local links creation

2005-07-27 Thread waseem aslam
Hi all! I 'm having a problem with local/goto destinations while dynamically creating a PDF from some existing PDFs. Here it goes... I have to generate a PDF doc concatening some PDFs that already exist. I read in the documentation how to do it, and i followed the instructions (actually,

[iText-questions] Print dialog

2005-07-27 Thread Marek Scholaster
Hello, I'm considering using pdf (and iText) to generate documents on our server. Before I start studying the internals I would like to know if the following is possible: - create pdf that when loaded into Adobe Reader will pop up a print dialog Thanks, Marek -