I have a PDF which has been signed by 2 people (by Eid).
I'm trying to retrieve this information but I'm unable so far.
This is what I have so far:
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
string workingFolder = Environment.GetFolderPath(Environment.SpecialFolder.Desktop);
string inputFile = Path.Combine(workingFolder, "Tax Return.pdf");
PdfReader reader = new PdfReader(inputFile);
Console.ReadLine();
}
}
}
If I inspect 'reader' during runtime I can see that AcroForm has 2 Fields that point to the signatures but I'm unable to see any specific information about these signatures.