Re: [iText-questions] Color in PDF

2008-02-22 Thread murthy gandikota
Ensley www.bearprinting.com - From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of murthy gandikota Sent: Thursday, February 21, 2008 11:08 AM To: itext-questions@lists.sourceforge.net Subject: [iText-questions] Color in PDF Hi Does anyone

[iText-questions] Color in PDF

2008-02-21 Thread murthy gandikota
Hi Does anyone know how to highlite the PDF with color? Is that possible? Thanks Murthy - Be a better friend, newshound, and know-it-all with Yahoo! Mobile. Try it now.- This

[iText-questions] OT: Acrobat 8 Error: File Not Found

2007-04-17 Thread murthy gandikota
When I try to download a PDF document generated with iText on an Internet Explorer 6 browser running on Windows XP I get a prompt that asks for open/save/cancel. After I choose open, the Acrobat 8.0 reader throws an error: The file cannot be found. A web search yielded a possible fix

Re: [iText-questions] Acrobat Reader 7 vs. Acrobar Reader 8

2007-02-21 Thread murthy gandikota
std::DisclaimerCardiff DisCard; -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of murthy gandikota Sent: Tuesday, February 20, 2007 4:00 PM To: Post all your questions about iText here Subject: Re: [iText-questions] Acrobat Reader 7 vs. Acrobar Reader 8

Re: [iText-questions] An Error Exists on this Page; Acrobat may not display the page correctly

2007-02-20 Thread murthy gandikota
PROTECTED] wrote: murthy gandikota wrote: An Error Exists on this Page; Acrobat may not display the page correctly Basically, what I see is the form before it was overlaid with text generated with Lowagie software. On other PC's using Acrobat 8 we don't see the error. The filled form is shown

[iText-questions] Acrobat Reader 7 vs. Acrobar Reader 8

2007-02-20 Thread murthy gandikota
The PDF's generated open fine in Acrobat Reader Version 7 but not in Acrobat Reader Version 8. Does anyone have this problem? Murthy - Be a PS3 game guru. Get your game face on with the latest PS3 news and previews at Yahoo!

Re: [iText-questions] Acrobat Reader 7 vs. Acrobar Reader 8

2007-02-20 Thread murthy gandikota
you. --Mark Storer Senior Software Engineer Cardiff.com #include disclaimer typedef std::DisclaimerCardiff DisCard; -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of murthy gandikota Sent: Tuesday, February 20, 2007 3:19 PM To: iText-questions

Re: [iText-questions] Acrobat Reader 7 vs. Acrobar Reader 8

2007-02-20 Thread murthy gandikota
Software Engineer Cardiff.com #include disclaimer typedef std::DisclaimerCardiff DisCard; -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of murthy gandikota Sent: Tuesday, February 20, 2007 3:32 PM To: Post all your questions about iText here Subject

[iText-questions] An Error Exists on this Page; Acrobat may not display the page correctly

2007-02-19 Thread murthy gandikota
Hi Thanks to Lowagie, we are able to downloadn PDF's successfully using JSP. However, on one particular PC we get the error: An Error Exists on this Page; Acrobat may not display the page correctly I have reinstalled Acrobat 8 and the error still comes up. Basically, what I

Re: [iText-questions] Acro Forms: Interactive Forms

2006-06-10 Thread murthy gandikota
:You have some examples at itextpdf.sf.net.Paulo- Original Message - From: "murthy gandikota" <[EMAIL PROTECTED]>To: <ITEXT-QUESTIONS@LISTS.SOURCEFORGE.NET>Sent: Friday, June 09, 2006 9:55 PMSubject: [iText-questions] Acro Forms: Interactive FormsHiIs there someway to g

Re: [iText-questions] Acro Forms: Interactive Forms

2006-06-10 Thread murthy gandikota
Sorry for the top post. Thank you Bruno. I look forward to reading your book. Do let us know the details when you have them.Bruno Lowagie [EMAIL PROTECTED] wrote: murthy gandikota wrote: Hi Is there someway to generate forms that can be edited?Of course there is.There's an object PdfFormField

[iText-questions] Acro Forms: Interactive Forms

2006-06-09 Thread murthy gandikota
Hi Is there someway to generate forms that can be edited? For example, a PDF document can have several "fields" to enter first name, last name, SSN, etc. for a survey. The recipient answers the survey form by entering text in the fields. Is it possible to do such a form using ITEXT API. I checked

Re: [iText-questions] urgent::::How to overlay on existing PDF?

2006-05-11 Thread murthy gandikota
Hi BrunoMany thanks for your response. I was able to make it work using the PdfStamper tutorial. If anyone is interested I can post the code. BTW, the people at sanface.com want an arm and a leg to do this. Thanks to all the developers at lowagie.com for their hardwork and dedication.Murthybruno

Re: [iText-questions] urgent::::How to overlay on existing PDF?

2006-05-11 Thread murthy gandikota
} // adding an extra page over = stamp.getOverContent(1); // closing PdfStamper will generate the new PDF file stamp.close(); } catch (Exception de) { de.printStackTrace(); } }}bruno [EMAIL PROTECTED] wrote: murthy gandikota wrote: Hi Bruno Many thanks for your response. No problem, you're welcome. I

Re: [iText-questions] urgent::::How to overlay on existing PDF?

2006-05-10 Thread murthy gandikota
", 10,20, 0); //cb.setLiteral("Helo there how are you"); //document.add(new Phrase("hello there"));cb.endText(); document.close(); } catch (Exception de) { de.printStackTrace(); } }}bruno [EMAIL PROTECTED] wrote: murthy gandikota wrote: Can someone please tell me how to overlay te

Re: [iText-questions] urgent::::How to overlay on existing PDF?

2006-05-10 Thread murthy gandikota
ontAndSize(bf,20);cb.setTextMatrix(10,10);cb.showTextAligned(PdfContentByte.ALIGN_CENTER, "hello there", 10,20, 0); //cb.setLiteral("Helo there how are you"); //document.add(new Phrase("hello there"));cb.endText(); document.close(); } catch (Exception de) { de.printStackTrace(); } }}bru

Re: [iText-questions] urgent::::How to overlay on existing PDF?

2006-05-10 Thread murthy gandikota
new Phrase("hello there"));cb.endText(); document.close(); } catch (Exception de) { de.printStackTrace(); } }}bruno [EMAIL PROTECTED] wrote: murthy gandikota wrote: Can someone please tell me how to overlay text on a PDF?http://article.gmane.org/gmane.comp.java.lib.itext.general/21595/br,Br

[iText-questions] editing pdf

2006-05-09 Thread murthy gandikota
HiI am new to this list. I would like to open an existing pdf and fill in the form with data. I can't find any API that can do this. Basically I need a PDF reader to open an existing PDF file and go to different fields (it is an application form) and fill in the data like name, telphone number,

[iText-questions] urgent::::How to overlay on existing PDF?

2006-05-09 Thread murthy gandikota
Can someone please tell me how to overlay text on a PDF?ThanksMurthy Yahoo! Mail goes everywhere you do. Get it on your phone.