Giter Site home page Giter Site logo

pdfium-binaries's Introduction

Total number of downloads Windows Build status Linux/macOS Build Status

Pre-compiled binaries of PDFium

This project hosts pre-compiled binaries of the PDFium library.

See Releases page to download binaries.

Download links

Here are the download links for latest release:

Platform PDFium PDFium with V8 and XFA
Windows 32-bit pdfium-windows-x86.zip (2 MB) pdfium-windows-x86-v8.zip (12 MB)
Windows 64-bit pdfium-windows-x64.zip (2 MB) pdfium-windows-x64-v8.zip (12 MB)
Linux pdfium-linux.tgz (6 MB) pdfium-linux-v8.tgz (37 MB)
macOS pdfium-darwin.tgz (6 MB) pdfium-darwin-v8.tgz (42 MB)

How to use PDFium in a CMake project

  1. Unzip one of more variants in a folder (eg C:\Libraries\pdfium)

  2. Set the environment variable PDFium_DIR to this folder (eg C:\Libraries\pdfium)

  3. In your CMakeLists.txt, add

     find_package(PDFium)
    
  4. Then link you executable with PDFium:

     target_link_libraries(my_exe pdfium)
    
  5. On Windows, make sure that pdfium.dll can be found by your executable.

How to use JavaScript V8 enabled binaries

If you are using the V8 enabled binaries additional initialization is required. In your code before using PDFium you have to call FPDF_InitEmbeddedLibraries() from the additional header fpdf_libs.h which is only available in V8 enabled binaries.

The archive will contain a res folder which you have to distribute with your application. On macOS you should include this in your application bundle for other platforms place it where your application binary will find it.

See the following example for usage:

    #include "fpdf_libs.h"

    ...

    // Determine the path to files in the res folder from the archive
    const char* resPath = "<path to the res folder>";

    // Initialize V8 and other embedded libraries
    FPDF_InitEmbeddedLibraries(resPath);

    // Make use of PDFium
    FPDF_InitLibrary();
    FPDF_DestroyLibrary();

This project isn't affilated with Google nor Foxit.

We are very thankful to AppVeyor and Travis CI for extending the build time limit, which allows us to build PDFium with V8.

pdfium-binaries's People

Contributors

bblanchon avatar tct2k avatar lukas-w avatar misha-vakulich avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.