Frequently Asked Questions
Where should I enter the license key
Q: We have purchased a license but cannot find a link to the download the full version. Please instruct on where to get the download/enter the key into the trial version.
A: To use the Pdfium.Net SDK you need to provide a valid license key to the Initialize method of the PdfCommon class. This can either be done directly by providing the key as a string and the call the Initialize(String key) method.
Please see the example below:
A: To use the Pdfium.Net SDK you need to provide a valid license key to the Initialize method of the PdfCommon class. This can either be done directly by providing the key as a string and the call the Initialize(String key) method.
Please see the example below:
//Initialize the SDK library with license key //You have to call this function before you can call any PDF processing functions. PdfCommon.Initialize("42433553494d500328bd021c3fd13c295f0f22d28e311f9cfb5937fbbb94fda3eb077f57b681c1c01742a0e23ccb0e7c52ccd8ea1674baf7473992f5043a4c77d2dc5ba756cd558d2555tdc333e90a2a036xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxd092574ec50a75aaae3b461c62b70"); //Open and load a PDF document from a file. var doc = PdfDocument.Load(@"c:\test001.pdf"); ...
Last updated Thu, May 5 2016 10:05am