Skip to content

Latest commit

 

History

History
47 lines (27 loc) · 1.39 KB

README.md

File metadata and controls

47 lines (27 loc) · 1.39 KB

Convert data to PDF Tables using .NET and the Foxit API

You need the Foxit SDK for .NET. If you don't have it, download it here. You also need to have the .NET SDK 6.0 or later installed on your PC. If you don't, get it here. Dataset is found in the /data directory.

Getting Started

  1. Clone the repository and change directory to it:

    [SSH] git clone [email protected]:IamGideonIdoko/foxit_pdf_table.git
    [HTTPS] git clone https://github.com/IamGideonIdoko/foxit_pdf_table.git
    
    cd foxit_pdf_table
  2. Create .env file from the content of .env.example and update it with your Foxit API key and serial number.

    cp .env.example .env

    Get the key and serial number from the /<sdk-root>/lib/gsdk_key.txt and /<sdk-root>/lib/gsdk_sn.txt files respectively

  3. Copy the foxit.dll and foxit_dotnetcore.dll library files from either the x64_vc15 or x86_vc15 folder (depending on the architecture you’re targeting) into the “lib” directory in the project.

  4. Copy the foxit.dll library file into the root of the project.

    cp lib/foxit.dll foxit.dll
  5. Install dependencies

    dotnet install
  6. Run

    dotnet run