Foxit Quick PDF Library

    Explore historical articles, tutorials, and technical guides for Foxit Quick PDF Library. Note: This product has been discontinued and integrated into our latest SDK tools.

    Foxit Quick PDF Library

    Setup C# and Visual Studio for use with the ActiveX edition of Foxit Quick PDF Library

    This tutorial shows you how to get ready to create your first PDF application with C#, Visual Studio and the ActiveX edition of Foxit Quick PDF Library. C# can be used with the ActiveX and DLL editions of Foxit Quick PDF Library – instructions for setting up the ActiveX edition in Visual Studio can be found below. [...]

    Read Article
    Foxit Quick PDF Library

    Unit QuickPDFxxxx or FoxitPDFLibraryxxxx was compiled with a different version

    Sometimes when upgrading a Delphi project to a new version of Foxit Quick PDF Library you may encounter an error message like this: Unit QuickPDFxxxx was compiled with a different version… The most likely cause of this error is that you may have an older version of the Foxit Quick PDF library in your project file somewhere. [...]

    Read Article
    Foxit Quick PDF Library

    FindFormFieldByTitle finds extra form field that doesn’t exist

    When calling the FindFormFieldByTitle it can sometimes find two fields with the same name. For example, in a PDF form there might be a form field with the title “Name_Of_Campaign“. The PDF SDK will find that form field fine but it might also find another field called with a very similar name such as “Name_Of_Campaign.“. [...]

    Read Article
    Debenu PDF Viewer SDK
    Foxit Quick PDF Library

    Can I become an official reseller of Debenu products?

    Yes, we have two different programs that let our loyal customers share in the success of Debenu. The first option is our official reseller program, which is for large resellers who primarily sell to corporations, and the second option is our affiliate program for our customers who recommend Debenu products to their friends, colleagues and [...]

    Read Article
    Foxit Quick PDF Library

    PHP and Windows with the ActiveX edition of Foxit Quick PDF Library

    PHP developers can use the ActiveX edition of Foxit Quick PDF Library to add PDF functionality to their PHP websites running on the Windows operating system. Here’s a quick guide on how to get up and running: The first thing you’ll need to do is register the ActiveX edition of Foxit Quick PDF Library. The sample [...]

    Read Article
    Foxit Quick PDF Library

    How can I programmatically detect color PDF files versus black and white PDF files?

    One method is to render each page to an image file and then check each pixel for RGB values not equal to each other. If R=G=B for each pixel then it’s a grayscale image. This should allow you to determine if a PDF file is color or black and white. There isn’t a document wide [...]

    Read Article
    Foxit Quick PDF Library

    How do I create an InstanceID in Foxit PDF Library Lite?

    Foxit Quick PDF Library Lite is an ActiveX and so does not require an Instance ID. The Instance ID is only required by the DLL edition of the commercial version of Foxit Quick PDF Library. In addition, you do not need to — indeed, you cannot — call the UnlockKey function when using Quick PDF Library Lite [...]

    Read Article
    Foxit Quick PDF Library

    Foxit Quick PDF Library and Mac Xcode Projects

    Several sample projects are provided with the download files for the Dylib edition of Foxit Quick PDF Library for Mac OS X. We recommend that you start your evaluation of Foxit Quick PDF Library on Mac using these sample projects as they provide a useful guide for how to initialise the library inside an Xcode project [...]

    Read Article
    Foxit Quick PDF Library

    Programmatically render PDF files in Windows Forms with .NET and C#

    Foxit Quick PDF Library can render a PDF as an image so that you can place it in your .NET application. Sample code using C# is provided below. private void Form1_Load(object sender, EventArgs e) { // Remember to initialize the library and call the // UnlockKey function with your license key before // calling the following [...]

    Read Article
    Foxit Quick PDF Library

    Add visual digital signature to a PDF programmatically

    Foxit Quick PDF Library lets you add visual digital signatures to PDF files programmatically with a few simple lines of code.

    Read Article