[iText-questions] Adobe with javascript

2011-04-21 Thread ankita.verma
I have been facing some problem using javascript with adobe acrobat. My requirement is such that I have to validate a text field so that it contains only alphabets and then displays a message. The text field should go blank then and the focus should return to the text field. Please provide me a

[iText-questions] How to change text to links in an existing pdf

2011-04-21 Thread M. Vanhanen
Hello, I´ve a problem: I have pdf schematics which consists of pictures and text. Text is very scattered, here and there and sometimes text are over the pictures. I would like to automatically change certain text of the pdf to hyperlinks and write a new pdf. I almost succeeded this with

[iText-questions] Any example of simple header/footer addition to a PDF file?

2011-04-21 Thread Rich Bonneau
Hi All, I have need of being able to customize a set of PDF files with specific header and footer information. Would like to do this programmatically rather than using GUI based tools like FinePrint etc. So my task is to read through a text file of names/email addresses and insert each

Re: [iText-questions] How to Embed fonts in PDF

2011-04-21 Thread 1T3XT BVBA
Op 21/04/2011 7:39, Balajiprasad schreef: Hi, I need to find out what fonts which are not embedded and want to Embed those fonts into file. How to do it programmatically(C#). Can you please give me sample code. Go to http://affiliate.manning.com/idevaffiliate.php?id=223_212 Look at

Re: [iText-questions] Adobe with javascript

2011-04-21 Thread 1T3XT BVBA
Hello, you have posted a mail to itext-questions@lists.sourceforge.net but you weren't subscribed. You are receiving this answer because I've added your mail address in Bcc: I will do this only once! Further answers will be sent to the mailing-list only (you won't receive them if you don't

Re: [iText-questions] Editing existing PDF file - Newly added textnot visible

2011-04-21 Thread 1T3XT BVBA
Op 20/04/2011 18:19, vikasgupta schreef: i have changed code to use PDFStamper but still no success And still you've managed to ignore the documentation. Why are you using the whole cb1.beginText(); cb1.setFontAndStyle();... cb1.endText(); construction, when it's so much easier to use a single

Re: [iText-questions] Any example of simple header/footer addition to a PDF file?

2011-04-21 Thread 1T3XT BVBA
Hello, you have posted a mail to itext-questions@lists.sourceforge.net but you weren't subscribed. You are receiving this answer because I've added your mail address in Bcc: I will do this only once! Further answers will be sent to the mailing-list only (you won't receive them if you don't

Re: [iText-questions] How to change text to links in an existing pdf

2011-04-21 Thread 1T3XT BVBA
Op 20/04/2011 15:25, M. Vanhanen schreef: Hello, I´ve a problem: I have pdf schematics which consists of pictures and text. Text is very scattered, here and there and sometimes text are over the pictures. I would like to automatically change certain text of the pdf to hyperlinks and write a

Re: [iText-questions] How to Embed fonts in PDF

2011-04-21 Thread Balajiprasad
Hi, This chapter shows how to add individual fonts. Dynamically we have more not embedded fonts. How to find it dynamically and embed the font into file? Regards, R.Balajiprasad From: 1T3XT BVBA [mailto:i...@1t3xt.info] Sent: Thursday, April 21, 2011 1:14 PM To: 'Post all your

Re: [iText-questions] How to Embed fonts in PDF

2011-04-21 Thread Balder
On 21/04/2011 10:20, Balajiprasad wrote: Hi, This chapter shows how to add individual fonts. Dynamically we have more not embedded fonts. How to find it dynamically You should look for the Font dictionar(y/ies) and see if the document contains the font you need. and embed the font into

[iText-questions] (no subject)

2011-04-21 Thread @bi........
how to unsubscribe u mail? -- Benefiting from Server Virtualization: Beyond Initial Workload Consolidation -- Increasing the use of server virtualization is a top priority.Virtualization can reduce costs, simplify

Re: [iText-questions] (no subject)

2011-04-21 Thread Balder
On 21/04/2011 10:58, @bi wrote: how to unsubscribe u mail? Unsubscribe my mail ? I don't want to Or you mean your own email then goto http://sourceforge.net/apps/trac/sourceforge/wiki/Mailing%20lists and do what is told

[iText-questions] Convert Text-Based PDF to Image-Based PDF

2011-04-21 Thread Balajiprasad
Hi, Can we convert entire PDF as Image Based. Currently we doing it manually by opening PDF into Adobe tool(Reader/Acrobat), and selecting File-Print-Advanced-Check 'print as Image' and select Printer as Adobe PDF. So it returning PDF as Image. Can we do it in itextsharp?. Please guide me.

Re: [iText-questions] Convert Text-Based PDF to Image-Based PDF

2011-04-21 Thread 1T3XT BVBA
Op 21/04/2011 11:11, Balajiprasad schreef: Hi, Can we convert entire PDF as Image Based. No, that's not possible with iText. Currently we doing it manually by opening PDF into Adobe tool(Reader/Acrobat), and selecting File-Print-Advanced-Check 'print as Image' and select Printer as Adobe

[iText-questions] PDF/A Validation

2011-04-21 Thread beppecosta
I successflully created a PDF/A with iText.5 Acroreader opens it and says that it's a PDF/A. However when I try to validate it (with Acrobat or Callas) I get some errors like: - Object in document does not correspond with XMP Metadata - Keywords does not correspond .. - Title does not

Re: [iText-questions] PDF/A Validation

2011-04-21 Thread Thomas Danckaert
have you used the method PdfWriter.createXmpMetadata before closing the document? Perhaps you could post a simplified version of your code. 2011/4/21 beppecosta beppeco...@yahoo.it: I successflully created a PDF/A with iText.5 Acroreader opens it and says that it's a PDF/A. However when I

[iText-questions] Modification of iText code to create PDF/A-1A recognizable by Adobe Acrobat X

2011-04-21 Thread BigBrus
Hi everybody, as I said in a previous post, I modified a part of the code of iText to create PDF/A-1A recognizable by Adobe Acrobat X and verifiable by PreFlight. I succeded to make a better modification, minimal and functional. It is all based on the fact that for the fields title and

Re: [iText-questions] PDF/A Validation

2011-04-21 Thread beppecosta
Document document = createDocument(pageSize, BACKGROUND, PAGEWIDTH, PAGEHEIGHT, LEFTMARGIN, TOPMARGIN, ORIENTATION); PdfWriter writer = PdfWriter.getInstance(document, new FileOutputStream(TOPDF)); if (PDFA.equals(Y)) {

Re: [iText-questions] Modification of iText code to create PDF/A-1A recognizable by Adobe Acrobat X

2011-04-21 Thread Paulo Soares
You can send me the modified files and I'll integrate them. Paulo -Original Message- From: BigBrus [mailto:michele.brus...@gmail.com] Sent: Thursday, April 21, 2011 11:01 AM To: itext-questions@lists.sourceforge.net Subject: [iText-questions] Modification of iText code to create

Re: [iText-questions] Modification of iText code to create PDF/A-1A recognizable by Adobe Acrobat X

2011-04-21 Thread BigBrus
Where can i mail you the file i modified? I'm new on this forum -- View this message in context: http://itext-general.2136553.n4.nabble.com/Modification-of-iText-code-to-create-PDF-A-1A-recognizable-by-Adobe-Acrobat-X-tp3465529p3465579.html Sent from the iText - General mailing list archive at

Re: [iText-questions] Modification of iText code to create PDF/A-1A recognizable by Adobe Acrobat X

2011-04-21 Thread Paulo Soares
psoa...@glintt.com -Original Message- From: BigBrus [mailto:michele.brus...@gmail.com] Sent: Thursday, April 21, 2011 11:32 AM To: itext-questions@lists.sourceforge.net Subject: Re: [iText-questions] Modification of iText code to create PDF/A-1A recognizable by Adobe Acrobat X Where

Re: [iText-questions] margins for the graphic part of a signature with SignatureRenderGraphicAndDescription rendering mode

2011-04-21 Thread ot_david
With a few screenshots, maybe I'll have more luck getting answers : * the background : http://itext-general.2136553.n4.nabble.com/file/n3466077/bg1.png * the signature image (500*300) : http://itext-general.2136553.n4.nabble.com/file/n3466077/signe0.png * the resulting in-pdf

Re: [iText-questions] PDF/A Validation

2011-04-21 Thread Mark Storer
Don't change any of the metadata fields (author, title, etc) after you call createXmpMetadata. Do all that beforehand. --Mark Storer Senior Software Engineer Cardiff.com import legalese.Disclaimer; DisclaimerCardiff DisCard = null; -Original Message- From: beppecosta

Re: [iText-questions] PDF/A Validation

2011-04-21 Thread beppecosta
I don't write any property and now it seems that the validation is ok. -- View this message in context: http://itext-general.2136553.n4.nabble.com/PDF-A-Validation-tp3465491p3466276.html Sent from the iText - General mailing list archive at Nabble.com.

Re: [iText-questions] PDF/A Validation

2011-04-21 Thread Mark Storer
Just make your doc-info changes before calling createXmpMetadata() instead of after. Should be fine. --Mark Storer Senior Software Engineer Cardiff.com import legalese.Disclaimer; DisclaimerCardiff DisCard = null; -Original Message- From: beppecosta

Re: [iText-questions] PDF/A Validation

2011-04-21 Thread beppecosta
I tried to set the document properties before the createXmpMetadata() but the validator says that there is an invalid use of XMP metadata. Without anu property set, however, the document passes ok. -- View this message in context:

[iText-questions] Where to find jar files for iText examples?

2011-04-21 Thread Richard and Terri Bonneau
Hi All, Downloaded the latest examples tar from the web site as well as the latest (?) itext jar file (labeled as iText-5.0.6) and ran mvn install on the examples folder pom.xml and get two artifacts missing as listed below. 1) com.itextpdf:itextpdf:jar:5.0.7-SNAPSHOT 2)

Re: [iText-questions] PDF/A Validation

2011-04-21 Thread Mark Storer
How odd. Can we see the PDF? --Mark Storer Senior Software Engineer Cardiff.com import legalese.Disclaimer; DisclaimerCardiff DisCard = null; -Original Message- From: beppecosta [mailto:beppeco...@yahoo.it] Sent: Thursday, April 21, 2011 9:06 AM To:

Re: [iText-questions] Where to find jar files for iText examples?

2011-04-21 Thread Balder
Hi Richard Thanks for letting us know. On 21/04/2011 19:26, Richard and Terri Bonneau wrote: Hi All, Downloaded the latest examples tar from the web site as well as the latest (?) itext jar file (labeled as iText-5.0.6) and ran mvn install on the examples folder pom.xml and get two