Foxit SDK .NET

Working with JavaScript using Foxit PDF SDK (.NET)

by Conor Smith | March 26, 2019
Foxit PDF SDK JavaScript is a language implemented within our library based on the core of JavaScript’s version 1.5. It is extremely useful for Web applications that need to use less memory from the server by offloading it onto the client. Foxit PDF SDK JavaScript implements extensions, in the form of new objects and their […]
Keep reading Keep reading

Is it possible to prevent digital signatures when flattening form fields using Foxit PDF.NET SDKs?

by Conor Smith | March 7, 2019
By default, digital signatures will be flattened along with all the other form fields in the PDF. If you wish to retain the digital signatures during the flattening, you can use the DigitalSignatures property of FormFlatteningOptions. Adding the following line to the above example would retain all the digital signatures. Using Visual Basic: document.Form.SignatureFieldsOutput = […]
Keep reading Keep reading

How to flatten an individual form field using Foxit PDF .NET SDKs

by Conor Smith | March 7, 2019
The following examples demonstrates how to flatten an individual form field within a PDF: Using Visual Basic: Dim document As MergeDocument = New MergeDocument("C:\AcroForm.pdf") document.Form.Fields(0).Output = FormFieldOutput.Flatten document.Draw(@"C:\AcroForm_Flattened.pdf"); Using C#: MergeDocument document = new MergeDocument(@"C:\AcroForm.pdf"); document.Form.Fields[0].Output = FormFieldOoutput.Flatten; document.Draw(@"C:\AcroForm_Flattened.pdf");
Keep reading Keep reading
Used everywhere

Trusted by