Re: [iText-questions] Signature appearance like Adobe signing?

2008-07-23 Thread 021336
Will do...thanks for pointing me in the right direction. Paulo Soares wrote: > > See PdfSignatureAppearance.setAcro6Layers() and > PdfSignatureAppearance.setRender(). > > Paulo > > - Original Message - > From: "021336" <[EMAIL PROTECTED]> &g

[iText-questions] Signature appearance like Adobe signing?

2008-07-23 Thread 021336
I was able to successfully create a PDF with an empty signature field. When I digitally sign it within Adobe Reader I get an appearance with the signers name in a large font with all additional details smaller and to the right. When I sign it programmatically within iText I just get a simple text

Re: [iText-questions] Mark cell for including signature later

2008-07-23 Thread 021336
Never mind I found an example. 021336 wrote: > > I've seen code snipets for adding fields to create an acroform (but have > not had to do any of this myself yet). I have created a few PDF outputs > using the tables and cells, but I haven't seen examples of placing a

Re: [iText-questions] Mark cell for including signature later

2008-07-23 Thread 021336
1T3XT info wrote: > > 021336 wrote: >> If not the cell can I locate an object in the cell as an anchor that I >> can >> then get the coordinates of and place the signature on top? > > Why don't you just put an empty signature field on that location?

[iText-questions] Mark cell for including signature later

2008-07-23 Thread 021336
We have an application that outputs a PDF file with all the content displayed using tables. After producing the document, I need to digitally sign it. I have a cell in the table where the signature needs to go but the location (from a coordinate system perspective) is not fixed depending on the

Re: [iText-questions] Error when verifying signature

2008-07-14 Thread 021336
be solved by someone sitting next to you. > > Paulo > > - Original Message - > From: "021336" <[EMAIL PROTECTED]> > To: > Sent: Friday, July 11, 2008 10:46 PM > Subject: Re: [iText-questions] Error when verifying signature > > >> &

Re: [iText-questions] Error when verifying signature

2008-07-11 Thread 021336
Update: I was able to get it to work well enough for our situation using iText 1.5 (version where they were using Bouncy Castle capabilities internally vs. the external libraries as is the case now). Obviously, being new to this and working off of code samples I find, it is difficult to know if i

Re: [iText-questions] Error when verifying signature

2008-07-11 Thread 021336
Paulo, Here is the file with the signature I am trying to extract the information from: Please let me know if you have any suggestions. 021336 wrote: > > I've also tried iText 2.1.2u with Bouncy Castle libraries 1.36 and receive > the same error. > > In the end, I

Re: [iText-questions] Error when verifying signature

2008-07-11 Thread 021336
ED] >> [mailto:[EMAIL PROTECTED] On >> Behalf Of 021336 >> Sent: Thursday, July 10, 2008 9:20 PM >> To: itext-questions@lists.sourceforge.net >> Subject: [iText-questions] Error when verifying signature >> >> >> Using the standard code below: >

[iText-questions] Error when verifying signature

2008-07-10 Thread 021336
Using the standard code below: PdfReader mReader = new PdfReader(aUnsignedFileName); AcroFields mForm = mReader.getAcroFields(); ArrayList mSignatures = mForm.getSignatureNames(); String mName; for (Iterator i = mSignatures.iterator(); i

Re: [iText-questions] Error when verifying signature

2008-07-10 Thread 021336
and up but their ftp site isn't letting me get to previous releases. Anyone know of another site for getting older versions of Bouncy Castle or changes I need to make to get the code to work with the latest versions Bouncy Castle and iText? 021336 wrote: > > Using th

Re: [iText-questions] detecting attachments in PDF

2008-04-02 Thread 021336
Thanks. That should help alot. 1T3XT info wrote: > > 021336 wrote: >> New to iText. We receive PDF files as part of a submission but we do not >> want PDF's with embedded file attachments. How would I go about >> detecting >> if a PDF file has a f

[iText-questions] detecting attachments in PDF

2008-04-01 Thread 021336
New to iText. We receive PDF files as part of a submission but we do not want PDF's with embedded file attachments. How would I go about detecting if a PDF file has a file attachment so I can flag it for rejection? -- View this message in context: http://www.nabble.com/detecting-attachments-in

[iText-questions] New corrupt PDF detection issue

2007-11-27 Thread 021336
In trying to detect corrupt PDF's from an outside source before they are accepted and loaded into our system, I was provided a tip and later noticed it within the iText book that by using the PdfReader class to open the PDF file I will get an exception if it is overall invalid. This works well.

[iText-questions] Need to detect PDF's w/Image only vs. Text

2007-11-27 Thread 021336
I am new to iText but could use some help getting pointed in the right direction. When receiving a PDF from an outside source that contains text we would prefer the text to be selectable so it can be searched and is not just text contained within an image. Therefore, if I can determine if a PDF

Re: [iText-questions] detecting corrupt PDF files with iText

2007-10-24 Thread 021336
hat a while back. Hope this at least leads you > to the correct answer. > > > > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of > 021336 > Sent: Tuesday, October 23, 2007 3:58 PM > To: itext-questions@lists.sourceforge.net

[iText-questions] detecting corrupt PDF files with iText

2007-10-23 Thread 021336
I am new to iText. Does iText have a built-in function for checking if a specified PDF file is corrupt (e.g., like getting page counts)? If not, I saw in another thread that looping through all the objects in the dictionary would throw an exception if the object is corrupt. Is this the recommen