Re: [iText-questions] [POSTSCRIPT] Can iText generate postscript instead of PDF ?

2007-02-06 Thread Fabrizio Accatino
Hi Bruno, yes, I know that Pdf 1.7 suports those features but the real production printing machines does not support Pdf 1.7. Ok, ok, perhaps there are few printers supporting it now... but I dont know them. The problem of "real" pdf direct printing is complex and hard to make it work well (

Re: [iText-questions] [POSTSCRIPT] Can iText generate postscriptinstead of PDF ?

2007-02-06 Thread Fabrizio Accatino
No. iText does not generate PostScript. You can generate Pdf and then convert it to PostScript using another tool (like ghoscript). Fabrizio - Using Tomcat but need to do more? Need to support web services, security? Get stuf

Re: [iText-questions] [POSTSCRIPT] Can iText generate postscript instead of PDF ?

2007-02-06 Thread Bruno Lowagie (iText)
Fabrizio Accatino wrote: > Hi, > > Pdf does not support selective duplex/simplex and paper tray selection. Please read the PDF Reference 1.7. Simplex/duplex and other printer properties are supported in Acrobat and Adobe Reader 8. I have added all the new printer functionality to iText, if you wa

Re: [iText-questions] [POSTSCRIPT] Can iText generate postscriptinstead of PDF ?

2007-02-06 Thread yves pielusenet
hello, thank you for your answer :) But maybe i make myself misunderstood. I don't want to convert to postscript, but only generate postscript instead of pdf. I want to use iText API to generated postscript not PDF. Maybe there is an option ? thanks -- yves piel Le mardi 06 février 2007 à 15:57

Re: [iText-questions] [POSTSCRIPT] Can iText generate postscript instead of PDF ?

2007-02-06 Thread Fabrizio Accatino
Hi, Pdf does not support selective duplex/simplex and paper tray selection. There are some solutions but tipically they are related with a particular printer manufacturer. But the argument is OffTopic on this mailing list. Feel free to write me privately if you need more infos/suggestions. Fab

Re: [iText-questions] Form filling problem at the PDF file editedusing Acrobat

2007-02-06 Thread SeungHyun Park
Hello, Paulo Soares. I already tried with AddSubstitutionFont function ago but I failed. Finally, I found the source of problem!!! It was the xfdfReader of iTextSharp. When I set some break points and investigated the values of xfdfReader object, I found that the Korean chars of xfdfReader ob

[iText-questions] Page Labels

2007-02-06 Thread Dean Krueger
Hi. I have a multi page PDF and would like to get the page numbers of each page. In the PDF spec this is called Page Label. I was wondering if iText supports the getting of these page numbers. I am looking in the book on page 402 it shows that I can change them on documents I create. But doesn't s

Re: [iText-questions] [POSTSCRIPT] Can iText generate postscriptinstead of PDF ?

2007-02-06 Thread Mark Storer
iText will not convert to PostScript, no. But there is at least one free PDF->PS converter out there, called GhostScript. It's not written in Java, so you'd probably have Runtime.exec(). You might also experiment with the Java Print API, though I didn't see anything conclusive. http://www.go

[iText-questions] [POSTSCRIPT] Can iText generate postscript instead of PDF ?

2007-02-06 Thread yves pielusenet
hello, I have to genertte postscript to print a job which has duplex mode on some pages and no duplex for other, and paper are selected from several paper tray. I don't know how to do this with PDF, so I wonder if iText can generate postacript. So I would be able to modify iText source code add po

Re: [iText-questions] Get Signature Field

2007-02-06 Thread Brian McKeever
> > Actually I am not meant to forge a signed PDF. > > Example: 1 pdf contains 2 pages and has signed in each pages. > > User needs to split the pdf become 2 pdf instead. > > I can managed spliting it become 2 pdf but reliazed the signature is > > missing. > when you split a document you are alter

Re: [iText-questions] Get Signature Field

2007-02-06 Thread Leonardo Ramos
when you split a document you are altering it. This voids the signature. Because you do not sign a page, but the whole document On 2/6/07, Reinardy Halim <[EMAIL PROTECTED]> wrote: > Thank you for your reply. > Actually I am not meant to forge a signed PDF. > Example: 1 pdf contains 2 pages and ha

Re: [iText-questions] Setting DPI

2007-02-06 Thread Bill Ensley
DPI and PageSize have nothing to do with eachother. Bruno is right, i suspect that you are not properly setting your page size to be the size that you want. When you open your document in Acrobat, what are the dimesions of the document? -Bill Ensley www.bearprinting.com _ From: [EM

Re: [iText-questions] Embed fonts into existing pdf... another try

2007-02-06 Thread porcupine
in C#: Font f = FontFactory.GetFont(fontfacename, BaseFont.CP1252, BaseFont.EMBEDDED, fontsize, Font.NORMAL); gives me a pdfx1a compatible embedded font (I control font style by using the full face name eg "Arial Bold", not by Font.Bold) hth neptuno wrote: > > Hello, > > Can someone tell me

Re: [iText-questions] Setting DPI

2007-02-06 Thread Bruno Lowagie (iText)
magesh rathnam wrote: > Hi, > > Is it possible to set the print DPI of the PDF via code? If yes, Can > you explain me how? I create a document of 4.82 * 6.94 in. But when I > print it, it comes out a lot smaller Have you use the correct PageSize (347.04 x 499.68)? Have you set the PrintScali

Re: [iText-questions] RTF: total page count

2007-02-06 Thread Bruno Lowagie (iText)
Henry Lu wrote: > Is there a way to find out how many page in a document after a > processing (right before or after document.close();)? No, this is inherent to the RTF format. PDF is a PDL, which means the content and layout of each page is described regardless of the program that will render th

Re: [iText-questions] RTF: total page count

2007-02-06 Thread Mark M. Hall
On Tuesday 06 February 2007 15:11, Henry Lu wrote: > Is there a way to find out how many page in a document after a > processing (right before or after document.close();)? Read this http://itextdocs.lowagie.com/tutorial/rtf/index.html Greetings, Mark --

Re: [iText-questions] iText reaches the bookshelves of Thailand

2007-02-06 Thread Bruno Lowagie (iText)
porcupine wrote: > Congrats, iText reaches the bookshelves of Thailand... and I thought I was > the only one who had a copy! yours for US$50 > http://img264.imageshack.us/my.php?image=pic00481vc9.jpg > http://img264.imageshack.us/img264/2325/pic00481vc9.jpg Oh, this is nice! Thanks for the pict

[iText-questions] RTF: total page count

2007-02-06 Thread Henry Lu
Is there a way to find out how many page in a document after a processing (right before or after document.close();)? -Henry - Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly w

Re: [iText-questions] Form filling problem at the PDF file editedusing Acrobat

2007-02-06 Thread Paulo Soares
The problem here is that the font is not embedded. As the font is not embedded you must provide iText with an alternative to show the glyphs. This is done with AcroFields.AddSubstitutionFont(). Paulo > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On > Beha

[iText-questions] iText reaches the bookshelves of Thailand

2007-02-06 Thread porcupine
Congrats, iText reaches the bookshelves of Thailand... and I thought I was the only one who had a copy! yours for US$50 http://img264.imageshack.us/my.php?image=pic00481vc9.jpg http://img264.imageshack.us/img264/2325/pic00481vc9.jpg -- View this message in context: http://www.nabble.com/iText

Re: [iText-questions] Setting DPI

2007-02-06 Thread magesh rathnam
Hi, Is it possible to set the print DPI of the PDF via code? If yes, Can you explain me how? I create a document of 4.82 * 6.94 in. But when I print it, it comes out a lot smaller and I had to change the DPI so that it prints to the correct size. So my question is how can I set this DPI inside

Re: [iText-questions] Setting DPI

2007-02-06 Thread Bruno Lowagie (iText)
magesh rathnam wrote: > Hi, > > Is it possible to set the print DPI of the PDF via code? If yes, Can > you explain me how? I'm using Java as my programming language. You do know that PDF doesn't really have a resolution, do you? http://itext.ugent.be/library/question.php?id=100 However since P

[iText-questions] Setting DPI

2007-02-06 Thread magesh rathnam
Hi, Is it possible to set the print DPI of the PDF via code? If yes, Can you explain me how? I'm using Java as my programming language. -- Thanks & Regards, Magesh - Using Tomcat but need to do more? Need to support web ser

Re: [iText-questions] Get Signature Field

2007-02-06 Thread Reinardy Halim
Thank you for your reply. Actually I am not meant to forge a signed PDF. Example: 1 pdf contains 2 pages and has signed in each pages. User needs to split the pdf become 2 pdf instead. I can managed spliting it become 2 pdf but reliazed the signature is missing. Is there any better way to solve th

[iText-questions] Embed fonts into existing pdf... another try

2007-02-06 Thread S�rgio Oliveira
Hello, Can someone tell me how does iText manage the insertion of fonts into a pdf file? For instance, if I create a pdf file using itext.writer and add a label and/or field of a specified font, how does that font will be added to the file? I´m asking this because, if I can´t add fonts to

Re: [iText-questions] Form filling problem at the PDF file edited using Acrobat

2007-02-06 Thread dark
1) -> I tried with Acrobat 6, 7 and 8. The version of the PDF file that I created is 1.4. 2) -> I tried with Korean font pack installed and uninstalled. Indeed, Acrobat always shows dialog box that font pack needed when I insert text field and change its font to any Korean font. Therefore, if

Re: [iText-questions] Revoking access to a document

2007-02-06 Thread Bruno Lowagie (iText)
Uros Vonta wrote: > The files won't bo online, they'll be accessible over Lotus Notes > application. User is allowed to read the file with less permissions > possible. What I have to do with file, that user can't open file if he > has saved a copy on his file system. Leonard has answered your q

Re: [iText-questions] Revoking access to a document

2007-02-06 Thread Uros Vonta
The files won't bo online, they'll be accessible over Lotus Notes application. User is allowed to read the file with less permissions possible. What I have to do with file, that user can't open file if he has saved a copy on his file system. On 2/6/07, Bruno Lowagie (iText) <[EMAIL PROTECTED]> wr

Re: [iText-questions] Set document permissions?

2007-02-06 Thread Bruno Lowagie (iText)
Sérgio Oliveira wrote: > Hi, > > Is it possible to change/set the permissions of a pdf file using iText? http://itext.ugent.be/library/api/com/lowagie/text/pdf/PdfWriter.html#setEncryption(boolean,%20java.lang.String,%20java.lang.String,%20int) > What I want is to set the permissions not to pri

Re: [iText-questions] Itext for Word Document from JSP Web application

2007-02-06 Thread Bruno Lowagie (iText)
Udo Rader wrote: > http://www.joeschmidt.com/img/211820.jpg > > ... could not resist, sorry :-) No need to say sorry. It's a good one. I hadn't seen it before ;-) br, Bruno - Using Tomcat but need to do more? Need to support

Re: [iText-questions] Itext for Word Document from JSP Web application

2007-02-06 Thread Mark M. Hall
On Tuesday 06 February 2007 13:29, Raghu wrote: > My requirment is to genberate Word document. > But are the limitations of word compared to RTF. > Does generated RTF file can be renamed to .doc ? You can do that, but it doesn't magically make a DOC document out of an RTF document. > or RTF/.DOC

Re: [iText-questions] PDF permissions

2007-02-06 Thread Bruno Lowagie (iText)
Uros Vonta wrote: > I have to prevent copying, printing, editing AND SAVING pdf files for > most users. The problem is saving the documents. I was thinking about > revoking access for a period of time or something because I read that > this is doable. Please post any suggestions. I wonder if som

Re: [iText-questions] Revoking access to a document

2007-02-06 Thread Bruno Lowagie (iText)
Uros Vonta wrote: > How can i revoke access to a document and what possibilities do I have? > Can everyone post some sample code or samething. If you have put a document online, and you remove it. People no longer have access to it. Of course if they have downloaded it, or if someone/something ar

Re: [iText-questions] Itext for Word Document from JSP Web application

2007-02-06 Thread Udo Rader
On Tue, 2007-02-06 at 18:59 +0530, Raghu wrote: > My requirment is to genberate Word document. > But are the limitations of word compared to RTF. > Does generated RTF file can be renamed to .doc ? > > or RTF/.DOC are same ? sometimes the only thing that can be said is RTFM or even better http://

Re: [iText-questions] Itext for Word Document from JSP Web application

2007-02-06 Thread Bruno Lowagie (iText)
Raghu wrote: > My requirment is to generate Word document. If that's your requirement, then you should generate documents that are in Word format. > Does generated RTF file can be renamed to .doc ? RTF files can have a doc extension. > or RTF/.DOC are same ? Are Tigers and Lions the same. NO,

Re: [iText-questions] Revoking access to a document

2007-02-06 Thread Leonard Rosenthol
Take a look at Adobe's LiveCycle Policy Server available online at dc.adobe.com. Leonard On Feb 6, 2007, at 8:15 AM, Uros Vonta wrote: > How can i revoke access to a document and what possibilities do I > have? Can everyone post some sample code or samething. > > tnx, Uros (don't look at my

[iText-questions] PDF permissions

2007-02-06 Thread Uros Vonta
I have to prevent copying, printing, editing AND SAVING pdf files for most users. The problem is saving the documents. I was thinking about revoking access for a period of time or something because I read that this is doable. Please post any suggestions. I wonder if something like this can be done

Re: [iText-questions] Itext for Word Document from JSP Web application

2007-02-06 Thread Raghu
My requirment is to genberate Word document. But are the limitations of word compared to RTF. Does generated RTF file can be renamed to .doc ? or RTF/.DOC are same ? -Original Message- From: Mark Hall [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 06, 2007 4:06 PM To: [EMAIL PROTECTED

Re: [iText-questions] Active x control support in generated pdf document

2007-02-06 Thread Leonard Rosenthol
On Feb 5, 2007, at 10:51 PM, Praveen BALAGOWNI wrote: > I am generating a pdf dynamically from a servlet using > iText.It also embeds signature generated by electronic signature > pad using Acitve X component.When embedding the signature in pdf > file,it is in text(string) format genera

[iText-questions] Revoking access to a document

2007-02-06 Thread Uros Vonta
How can i revoke access to a document and what possibilities do I have? Can everyone post some sample code or samething. tnx, Uros (don't look at my english mistakes) - Using Tomcat but need to do more? Need to support web se

Re: [iText-questions] RTF: reduce the space between rows in table

2007-02-06 Thread Mark M. Hall
On Tuesday 06 February 2007 13:06, Henry Lu wrote: > In RTF, how do we reduce the space between rows in table? Please provide some code of what you are currently doing. Then I can provide pointers how to fix your problem. Greetings, Mark --

Re: [iText-questions] RTF fonts

2007-02-06 Thread Mark M. Hall
On Tuesday 06 February 2007 12:46, Henry Lu wrote: > RtfFont plain11Font = new RtfFont("Arial", 11, RtfFont.STYLE_NONE); > > What I realy got is font size 10. Why? How to fix it? I don't know. You'll have to show some more code, so that I can see what you are doing. Greetings, Mark -

[iText-questions] RTF: reduce the space between rows in table

2007-02-06 Thread Henry Lu
In RTF, how do we reduce the space between rows in table? -Henry SXrgio Oliveira wrote: > Hi, > > Is it possible to change/set the permissions of a pdf file using > iText? What I want is to set the permissions not to print in a > existing pdf (well, it doenst´matter if I will need to copy it t

[iText-questions] RTF fonts

2007-02-06 Thread Henry Lu
When I define RtfFont plain11Font = new RtfFont("Arial", 11, RtfFont.STYLE_NONE); What I realy got is font size 10. Why? How to fix it? -Henry SXrgio Oliveira wrote: > Hi, > > Is it possible to change/set the permissions of a pdf file using > iText? What I want is to set the permissions not

[iText-questions] Set document permissions?

2007-02-06 Thread S�rgio Oliveira
Hi, Is it possible to change/set the permissions of a pdf file using iText? What I want is to set the permissions not to print in a existing pdf (well, it doenst´matter if I will need to copy it to another document created with writer). Thank you ___

Re: [iText-questions] Form filling problem at the pdf file edited using Acrobat

2007-02-06 Thread Bruno Lowagie (iText)
SeungHyun Park wrote: > But, all Korean characters disappeared at the filled PDF file when I > open it by Acrobat. 1) What version of Acrobat? Old version don't support Unicode in fields 2) Is the Korean font pack installed? br, Bruno -

Re: [iText-questions] Hi Vertical Lines !!!

2007-02-06 Thread Bruno Lowagie
Ramachandran wrote: > I need to design my document by drawing vertical and horizontal > lines with width 5f.it should looks like T - ShapeAny body please > let me know the option . Coz im trying using LineTo method but i cant > able to make vertical lines... This doesn't make sense. If you

Re: [iText-questions] Convert PDF to HTML in iTextSharp - Reg

2007-02-06 Thread Bruno Lowagie (iText)
Mohammed, Mohamed (IE10) wrote: > Hi, > How to convert a pdf document to HTML Document using iTextSharp. You don't. > If you have any sample code, please send it to my mail. It's impossible with iText. > I need this very urgently. you will have a hard time finding another product that is capab

Re: [iText-questions] Itext for Word Document from JSP Web application

2007-02-06 Thread Mark Hall
Hi, iText can't generate DOC files, but if RTF is sufficient then read http://itextdocs.lowagie.com/tutorial/rtf/index.html to understand the limitations of generating RTF documents with iText. Greetings, Mark On 06.02.2007, at 05:59, Raghuveer wrote: > I have a requirment to generate a wor

[iText-questions] Convert PDF to HTML in iTextSharp - Reg

2007-02-06 Thread Mohammed, Mohamed (IE10)
Hi, How to convert a pdf document to HTML Document using iTextSharp in ASP.NET 2.0? If you have any sample code, please send it to my mail I need this very urgently. Thanks in advance. Regards, Buhari This e-mail and any attachments thereto, are intended only for use by the

[iText-questions] SEAM and PDF

2007-02-06 Thread Bruno Lowagie (iText)
Hello again, I just installed SEAM 1.1.5 on my machine, and I had a quick glance at the source code of the PDF related functionality. As soon as I have the time, I'll do a more thorough inspection. These are some remarks: In package org.jboss.seam.pdf.ui.ITextComponent, there's a method replac

[iText-questions] Hi Vertical Lines !!!

2007-02-06 Thread Ramachandran
Hi i need to design my document by drawing vertical and horizontal lines with width 5f.it should looks like T - ShapeAny body please let me know the option . Coz im trying using LineTo method but i cant able to make vertical lines...im Going in a complex way for getting two li

[iText-questions] mailing list problems

2007-02-06 Thread Bruno Lowagie
Bruno Lowagie wrote: > Again I haven't received any mail from the list today. I have just received my first mail from the list in almost two days. When looking at the archives I can see I have missed several mails. I only have time for a short answer: To the person wanting to display a PDF: iTex

Re: [iText-questions] Get Signature Field

2007-02-06 Thread Bruno Lowagie (iText)
Reinardy Halim wrote: > Hi, > I've pdf with signature field with signed. I wanted to get that signature > field and copy to new pdf form. Is it posible ? In other words: you want to forge a signed PDF. No, that's not possible. If it were, there would be a serious security problem. br, Bruno

[iText-questions] Get Signature Field

2007-02-06 Thread Reinardy Halim
Hi, I've pdf with signature field with signed. I wanted to get that signature field and copy to new pdf form. Is it posible ? Regards _ Find just what you are after with the more precise, more powerful new Windows Live Search. http