Skip to main content Skip to footer

Set the creator of pdf to be shown in Adobe Acrobat in C#

Background:

Adobe Acrobat does not recognize GcPDF’s Author member set from the DocInfo class. Instead, the user must set the Creator property, this will be displayed as the author of the PDF in Adobe Acrobat.

Solution:

Set the creator property of the pdf using GcPDF like so:

doc.Metadata.Creators.Add("John Smith");

 After setting the Creator, you will see this is now seen in the Adobe Acrobat:

Mackenzie Albitz