I am able to read all of my PDF fields except for the digital signature fields. I dont know what extra steps i might need to take , but the goal here is to get the signature and store it in a sql db for records and populating the pdf back for view. I am
trying to avoid to store full pdfs because they can grow and i rather store the data in my sql db.
asp.net_guy
Member
128 Points
66 Posts
How to read signature data from pdf with FdfReader
Oct 03, 2011 04:49 AM|LINK
I am able to read all of my PDF fields except for the digital signature fields. I dont know what extra steps i might need to take , but the goal here is to get the signature and store it in a sql db for records and populating the pdf back for view. I am trying to avoid to store full pdfs because they can grow and i rather store the data in my sql db.
HttpRequest pdfRequest = Request;
System.IO.Stream istream = Request.InputStream;
FdfReader fdf = new FdfReader(istream);
Label1.Text = fdf.GetFieldValue("MySig");
asp.net_guy
Member
128 Points
66 Posts
Re: How to read signature data from pdf with FdfReader
Oct 05, 2011 07:18 PM|LINK
Cant do it since the signature is realted to the whole pdf and the FDF doesnt include the signatures.