PdfiumLight 0.0.3

There is a newer version of this package available.
See the version list below for details.
dotnet add package PdfiumLight --version 0.0.3
NuGet\Install-Package PdfiumLight -Version 0.0.3
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="PdfiumLight" Version="0.0.3" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add PdfiumLight --version 0.0.3
#r "nuget: PdfiumLight, 0.0.3"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install PdfiumLight as a Cake Addin
#addin nuget:?package=PdfiumLight&version=0.0.3

// Install PdfiumLight as a Cake Tool
#tool nuget:?package=PdfiumLight&version=0.0.3

PdfiumLight

A lightweight C# Library to render PDFs with Google's Pdfium in .NET Apps. This is basically a much slimmer version of Pieter van Ginkel's PdfiumViewer with some added functionality.

Getting started

Getting started is easy. Just add PdfiumLight, PdfiumViewer.Native.x86.v8-xfa and / or PdfiumViewer.Native.x86_64.v8-xfa (see below) as NuGet dependencies to your project and you're good to go:

// Load the pdf file and create a new document object
PdfDocument document = new PdfDocument("C:/Users/Tom/Documents/sample.pdf");
// Load the first page
PdfPage page = document.GetPage(0);
// Render the page
Image renderedPage = page.Render(700, 1200, 1, 1, PdfRotation.Rotate0, PdfRenderFlags.None);

You have to provide pdfium.dll

There are many ways to include pdfium.dll, the most easy one is by adding one or both of the following NuGet-dependencies created by @pvginkel:

  • PdfiumViewer.Native.x86.v8-xfa
  • PdfiumViewer.Native.x86_64.v8-xfa

A very basic packages.config could look like this:

<?xml version="1.0" encoding="utf-8"?>
<packages>
  <package id="PdfiumLight" version="0.0.3" targetFramework="net45" />
  <package id="PdfiumViewer.Native.x86.v8-xfa" version="2018.4.8.256" targetFramework="net45" />
  <package id="PdfiumViewer.Native.x86_64.v8-xfa" version="2018.4.8.256" targetFramework="net45" />
</packages>

Features

(already implemented)

  • load PDF-documents
  • render pages
  • convert device coordinates to page coordinates and vice versa
  • extract text from page
  • check if there is text at a specific point on the page (very usefull if implementing a text layer)

(still to come)

  • support for internal and external links
  • search
  • annoatation support
  • form support

(wishlist)

  • caching
  • part-by-part rendering (although I'm not sure if Pdfium does support it)
  • simple editing features such as reorder and deleting pages and merging documents
Product Compatible and additional computed target framework versions.
.NET Framework net45 is compatible.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
0.0.4 4,009 6/3/2018
0.0.3 6,921 5/30/2018
0.0.2 1,268 5/30/2018
0.0.1 1,154 5/30/2018

Initial release