PdfPig 0.1.8

.NET 6.0 .NET Standard 2.0 .NET Framework 4.5.1
There is a newer prerelease version of this package available.
See the version list below for details.
dotnet add package PdfPig --version 0.1.8
NuGet\Install-Package PdfPig -Version 0.1.8
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="PdfPig" Version="0.1.8" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add PdfPig --version 0.1.8
#r "nuget: PdfPig, 0.1.8"
#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 PdfPig as a Cake Addin
#addin nuget:?package=PdfPig&version=0.1.8

// Install PdfPig as a Cake Tool
#tool nuget:?package=PdfPig&version=0.1.8

PdfPig

This project allows users to read and extract text and other content from PDF files. In addition the library can be used to create simple PDF documents containing text and geometrical shapes.

This project aims to port PDFBox to C#.

Get Started

The simplest usage at this stage is to open a document, reading the words from every page:

using (PdfDocument document = PdfDocument.Open(@"C:\Documents\document.pdf"))
{
    for (var i = 0; i < document.NumberOfPages; i++)
    {
        // This starts at 1 rather than 0.
        var page = document.GetPage(i + 1);

        foreach (var word in page.GetWords())
        {
            Console.WriteLine(word.Text);
        }
    }
}

New in v0.0.5 - To create documents use the class PdfDocumentBuilder. Though they are deprecated within the PDF specification the Standard 14 fonts provide a quick way to get started:

PdfDocumentBuilder builder = new PdfDocumentBuilder();

PdfPageBuilder page = builder.AddPage(PageSize.A4);

// Fonts must be registered with the document builder prior to use to prevent duplication.
PdfDocumentBuilder.AddedFont font = builder.AddStandard14Font(Standard14Font.Helvetica);

page.AddText("Hello World!", 12, new PdfPoint(25, 520), font);

byte[] documentBytes = builder.Build();

File.WriteAllBytes(@"C:\git\newPdf.pdf");

Each font must be registered with the PdfDocumentBuilder prior to use enable pages to share the font resources. Currently only Standard 14 fonts and TrueType fonts (.ttf) are supported.

Usage

The PdfDocument class provides access to the contents of a document loaded either from file or passed in as bytes. To open from a file use the PdfDocument.Open static method:

using UglyToad.PdfPig;
using UglyToad.PdfPig.Content;

using (PdfDocument document = PdfDocument.Open(@"C:\my-file.pdf"))
{
    int pageCount = document.NumberOfPages;

    Page page = document.GetPage(1);

    decimal widthInPoints = page.Width;
    decimal heightInPoints = page.Height;

    string text = page.Text;
}

The document contains the version of the PDF specification it complies with, accessed by document.Version:

decimal version = document.Version;

Document Creation

New in v0.0.5 - The PdfDocumentBuilder creates a new document with no pages or content. First, for text content, a font must be registered with the builder. Currently this supports Standard 14 fonts provided by Adobe by default and TrueType format fonts.

To add a Standard 14 font use:

public AddedFont AddStandard14Font(Standard14Font type)

Or for a TrueType font use:

AddedFont AddTrueTypeFont(IReadOnlyList<byte> fontFileBytes)

Passing in the bytes of a TrueType file (.ttf). You can check the suitability of a TrueType file for embedding in a PDF document using:

bool CanUseTrueTypeFont(IReadOnlyList<byte> fontFileBytes, out IReadOnlyList<string> reasons)

Which provides a list of reasons why the font cannot be used if the check fails. You should check the license for a TrueType font prior to use, since the compressed font file is embedded in, and distributed with, the resultant document.

The AddedFont class represents a key to the font stored on the document builder. This must be provided when adding text content to pages. To add a page to a document use:

PdfPageBuilder AddPage(PageSize size, bool isPortrait = true)

This creates a new PdfPageBuilder with the specified size. The first added page is page number 1, then 2, then 3, etc. The page builder supports adding text, drawing lines and rectangles and measuring the size of text prior to drawing.

To draw lines and rectangles use the methods:

void DrawLine(PdfPoint from, PdfPoint to, decimal lineWidth = 1)
void DrawRectangle(PdfPoint position, decimal width, decimal height, decimal lineWidth = 1)

The line width can be varied and defaults to 1. Rectangles are unfilled and the fill color cannot be changed at present.

To write text to the page you must have a reference to an AddedFont from the methods on PdfDocumentBuilder as described above. You can then draw the text to the page using:

IReadOnlyList<Letter> AddText(string text, decimal fontSize, PdfPoint position, PdfDocumentBuilder.AddedFont font)

Where position is the baseline of the text to draw. Currently only ASCII text is supported. You can also measure the resulting size of text prior to drawing using the method:

IReadOnlyList<Letter> MeasureText(string text, decimal fontSize, PdfPoint position, PdfDocumentBuilder.AddedFont font)

Which does not change the state of the page, unlike AddText.

Changing the RGB color of text, lines and rectangles is supported using:

void SetStrokeColor(byte r, byte g, byte b)
void SetTextAndFillColor(byte r, byte g, byte b)

Which take RGB values between 0 and 255. The color will remain active for all operations called after these methods until reset is called using:

void ResetColor()

Which resets the color for stroke, fill and text drawing to black.

Document Information

The PdfDocument provides access to the document metadata as DocumentInformation defined in the PDF file. These tend not to be provided therefore most of these entries will be null:

PdfDocument document = PdfDocument.Open(fileName);

// The name of the program used to convert this document to PDF.
string producer = document.Information.Producer;

// The title given to the document
string title = document.Information.Title;
// etc...

Document Structure

New in 0.0.3 the document now has a Structure member:

UglyToad.PdfPig.Structure structure = document.Structure;

This provides access to tokenized PDF document content:

Catalog catalog = structure.Catalog;
DictionaryToken pagesDictionary = catalog.PagesDictionary;

Page

The Page contains the page width and height in points as well as mapping to the PageSize enum:

PageSize size = Page.Size;

bool isA4 = size == PageSize.A4;

Page provides access to the text of the page:

string text = page.Text;

There is a new (0.0.3) method which provides access to the words. This uses basic heuristics and is not reliable or well-tested:

IEnumerable<Word> words = page.GetWords();

You can also (0.0.6) access the raw operations used in the page's content stream for drawing graphics and content on the page:

IReadOnlyList<IGraphicsStateOperation> operations = page.Operations;

There is also an early access (0.0.3) API for retrieving the raw bytes of PDF image objects per page:

IEnumerable<XObjectImage> images = page.ExperimentalAccess.GetRawImages();

This API will be changed in future releases.

Letter

Due to the way a PDF is structured internally the page text may not be a readable representation of the text as it appears in the document. Since PDF is a presentation format, text can be drawn in any order, not necessarily reading order. This means spaces may be missing or words may be in unexpected positions in the text.

To help users resolve actual text order on the page, the Page file provides access to a list of the letters:

IReadOnlyList<Letter> letters = page.Letters;

Credit

This project wouldn't be possible without the work done by the PDFBox team and the Apache Foundation.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net451 is compatible.  net452 is compatible.  net46 is compatible.  net461 is compatible.  net462 is compatible.  net463 was computed.  net47 is compatible.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Additional computed target framework(s)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (23)

Showing the top 5 NuGet packages that depend on PdfPig:

Package Downloads
OrchardCore.Media The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

Orchard Core CMS is a Web Content Management System (CMS) built on top of the Orchard Core Framework. The media module adds media management support.

Microsoft.DocAsCode.HtmlToPdf The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

Package Description

Tabula

Extract tables from PDF files (port of tabula-java using PdfPig).

UmbracoCms.UmbracoExamine.PDF The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

Umbraco indexing for PDF files using UmbracoExamine

GeneXus.Search.Core The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

Package Description

GitHub repositories (8)

Showing the top 5 popular GitHub repositories that depend on PdfPig:

Repository Stars
OrchardCMS/OrchardCore
Orchard Core is an open-source modular and multi-tenant application framework built with ASP.NET Core, and a content management system (CMS) built on top of that framework.
dotnet/docfx
Static site generator for .NET API documentation.
SciSharp/BotSharp
The LLM Application Framework in .NET
paillave/Etl.Net
Mass processing data with a complete ETL for .net developers
BobLd/DocumentLayoutAnalysis
Document Layout Analysis resources repos for development with PdfPig.
Version Downloads Last updated
0.1.9-alpha-20230914-d59d2 578 9/14/2023
0.1.9-alpha-20230827-ee756 3,251 8/27/2023
0.1.9-alpha-20230806-4a480 1,671 8/6/2023
0.1.8 244,970 6/5/2023
0.1.8-alpha-20230605-7fe5f 318 6/5/2023
0.1.8-alpha-20230529-6daa2 5,323 5/29/2023
0.1.8-alpha-20230528-5126d 275 5/28/2023
0.1.8-alpha-20230524-20d3c 1,081 5/24/2023
0.1.8-alpha-20230523-11df5 291 5/23/2023
0.1.8-alpha-20230522-c3dd6 651 5/22/2023
0.1.8-alpha-20230423-3898f 31,351 4/23/2023
0.1.8-alpha-20230420-147b8 393 4/20/2023
0.1.8-alpha-20230419-2d72d 513 4/19/2023
0.1.8-alpha-20230417-cdc3d 615 4/17/2023
0.1.8-alpha-20230415-9eb79 357 4/15/2023
0.1.8-alpha-20230414-42e41 299 4/14/2023
0.1.8-alpha-20230413-46a04 330 4/13/2023
0.1.8-alpha-20230412-db058 901 4/12/2023
0.1.8-alpha-20230411-0e39b 351 4/11/2023
0.1.8-alpha-20230403-2e062 3,358 4/3/2023
0.1.8-alpha-20230331-bd4ee 9,044 3/31/2023
0.1.8-alpha-20230327-2daba 2,276 3/27/2023
0.1.8-alpha-20230326-58b33 347 3/26/2023
0.1.8-alpha-20230324-a3a9d 435 3/24/2023
0.1.8-alpha-20230323-a4861 359 3/23/2023
0.1.8-alpha-20230320-c024e 709 3/20/2023
0.1.8-alpha-20230318-a5c91 359 3/18/2023
0.1.8-alpha-20230219-999f9 1,844 2/19/2023
0.1.8-alpha-20230117-88aad 1,409 1/17/2023
0.1.8-alpha-20230109-65bc7 657 1/9/2023
0.1.7 359,008 12/13/2022
0.1.7-alpha-20221212-c8874 42,723 12/12/2022
0.1.7-alpha-20221210-2aed9 306 12/10/2022
0.1.7-alpha-20220814-2f9a9 4,589 8/14/2022
0.1.7-alpha-20220703-545d1 1,432 7/3/2022
0.1.7-alpha-20220622-fc71a 474 6/22/2022
0.1.7-alpha-20220618-f2188 342 6/18/2022
0.1.7-alpha-20220525-559f3 2,837 5/25/2022
0.1.7-alpha-20220511-ddab5 1,562 5/11/2022
0.1.7-alpha-20220503-4e490 1,100 5/3/2022
0.1.7-alpha-20220426-03692 470 4/26/2022
0.1.6 777,448 4/25/2022
0.1.6-alpha-20220425-2576c 399 4/25/2022
0.1.6-alpha-20220423-801a3 384 4/23/2022
0.1.6-alpha-20220415-cbd02 873 4/15/2022
0.1.6-alpha-20220411-09a62 508 4/11/2022
0.1.6-alpha-20220405-c2ecb 1,021 4/5/2022
0.1.6-alpha-20220404-6b085 384 4/4/2022
0.1.6-alpha-20220315-9c83e 2,933 3/15/2022
0.1.6-alpha-20220220-b0a5f 2,390 2/20/2022
0.1.6-alpha-20220116-e54cd 1,373 1/16/2022
0.1.6-alpha-20220113-5b66e 352 1/13/2022
0.1.6-alpha-20220112-b89c8 448 1/12/2022
0.1.6-alpha-20220111-41bfa 716 1/11/2022
0.1.5 639,059 9/17/2021
0.1.5-alpha002 3,976 5/9/2021
0.1.5-alpha001 21,534 2/28/2021
0.1.5-alpha-20211231-a57e5 1,462 12/31/2021
0.1.5-alpha-20211026-55244 399 10/26/2021
0.1.5-alpha-20210929-615e8 427 9/29/2021
0.1.5-alpha-20210918-4c36f 430 9/18/2021
0.1.5-alpha-20210828-e8f91 442 8/28/2021
0.1.5-alpha-20210827-e8f91 410 8/27/2021
0.1.5-alpha-20210817-b1f88 460 8/17/2021
0.1.4 488,903 11/29/2020
0.1.3 35,835 11/15/2020
0.1.3-alpha001 1,758 9/4/2020
0.1.2 188,254 7/4/2020
0.1.2-alpha003 669 6/20/2020
0.1.2-alpha002 2,947 5/10/2020
0.1.2-alpha001 682 4/25/2020
0.1.1 108,259 3/18/2020
0.1.1-alpha001 662 3/15/2020
0.1.0 190,415 1/13/2020
0.1.0-beta002 604 1/8/2020
0.1.0-beta001 589 1/6/2020
0.0.11 1,357 12/17/2019
0.0.10 956 12/9/2019
0.0.9 107,623 8/13/2019
0.0.7 994 8/3/2019
0.0.6 1,994 5/19/2019
0.0.5 7,539 12/30/2018
0.0.3 984 11/27/2018
0.0.1 7,736 2/26/2018
0.0.1-alpha-002 996 1/21/2018
0.0.1-alpha-001 1,030 1/10/2018