|
|
Quote:Is it possible to get a list of all the signature fields in a PDF and check if they contain a signature or not? It is possible. Something like this Code:using(var doc = PdfDocument.Load(@"e:\0\1GB\signatureFields.pdf", new PdfForms()))
{
foreach(var field in doc.FormFill.InterForm.Fields)
{
if (field.Type != FormFieldTypesEx.Sign)
continue;
if (field.Dictionary.ContainsKey("V"))
{
//the field contains a signature
//your code here
}
}
}
Quote:is it possible to add use pdfium to add signature fields to a pdf file It is possible at a low level. You can form the appropriate dictionaries according to the PDF specification (p. 695) here: https://www.adobe.com/co...ve/pdf_reference_1-7.pdf
|
|
|
Is it possible to get a list of all the signature fields in a PDF and check if they contain a signature or not? Also, is it possible to add use pdfium to add signature fields to a pdf file.
|
Important Information:
The Patagames Software Support Forum uses cookies. By continuing to browse this site, you are agreeing to our use of cookies.
More Details
Close