Skip to content

Instantly share code, notes, and snippets.

@usman-aziz
Created August 28, 2019 11:39
Show Gist options
  • Save usman-aziz/769609021521952a96a8a25b6f8560c0 to your computer and use it in GitHub Desktop.
Save usman-aziz/769609021521952a96a8a25b6f8560c0 to your computer and use it in GitHub Desktop.
using (Signature signature = new Signature("D:\\sample.pdf"))
{
TextSignOptions options = new TextSignOptions("John Smith")
{
// set Text color
ForeColor = Color.Red
};
// sign document to file
signature.Sign("D:\\signed.pdf", options);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment