PdfPig 0.0.3

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

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

PdfPig

Build status codecov

This project allows users to read text content from PDF files.

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);
        }
    }
}

Installation

The package is available via the releases tab or from Nuget:

https://www.nuget.org/packages/PdfPig/

Or from the package manager console:

> Install-Package PdfPig

While the version is below 1.0.0 minor versions will change the public API without warning (SemVer will not be followed until 1.0.0 is reached).

API Changes

  • 0.0.3 - Changes to position data for Letter. Letter has a Location, Width and GlyphRectangle property. Consult the Wiki for details of the new API. Adds PdfDocument.Structure property allowing access to raw data.

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;
}

PdfDocument should only be used in a using statement since it implements IDisposable (unless the consumer disposes of it elsewhere).

Since this is alpha software the consumer should wrap all access in a try catch block since it is extremely likely to throw exceptions. As a fallback you can try running PDFBox using IKVM or using PDFsharp or by a native library wrapper using docnet.

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

decimal version = document.Version;

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;

The pages dictionary is the root of the pages tree within a PDF document. The structure also exposes a GetObject(IndirectReference reference) method which allows random access to any object in the PDF as long as its identifier number is known. This is an identifier of the form 69 0 R where 69 is the object number and 0 is the generation.

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();

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;

These letters contain:

  • The text of the letter: letter.Value.
  • The location of the lower left of the letter: letter.Location.
  • The width of the letter: letter.Width.
  • The font size in unscaled relative text units (these sizes are internal to the PDF and do not correspond to sizes in pixels, points or other units): letter.FontSize.
  • The name of the font used to render the letter if available: letter.FontName.
  • A rectangle which is the smallest rectangle that completely contains the visible region of the letter/glyph: letter.GlyphRectangle.

Letter position is measured in PDF coordinates where the origin is the lower left corner of the page. Therefore a higher Y value means closer to the top of the page.

Credit

This project wouldn't be possible without the work done by the PDFBox team and the Apache Foundation. Any bugs in the code are entirely my fault.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  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.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.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 net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  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)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • .NETStandard 2.0

    • No dependencies.

NuGet packages (47)

Showing the top 5 NuGet packages that depend on PdfPig:

Package Downloads
OrchardCore.Application.Cms.Core.Targets

Orchard Core CMS is a Web Content Management System (CMS) built on top of the Orchard Core Framework. Converts the application into a modular OrchardCore CMS application with TheAdmin theme but without any front-end Themes.

Microsoft.KernelMemory.Core

The package contains the the core logic and abstractions of Kernel Memory, not including extensions.

OrchardCore.Application.Cms.Targets

Orchard Core CMS is a Web Content Management System (CMS) built on top of the Orchard Core Framework. Converts the application into a modular OrchardCore CMS application with following themes. - TheAdmin Theme - SafeMode Theme - TheAgency Theme - TheBlog Theme - TheComingSoon Theme - TheTheme theme

Tabula

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

FileCurator

FileCurator is a simple manager for your files. It tries to give them a common interface to deal with files whether on your system or other locations.

GitHub repositories (13)

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
AI Multi-Agent Framework in .NET
microsoft/kernel-memory
RAG architecture: index and query any data using LLM and natural language, track sources, show citations, asynchronous memory patterns.
paillave/Etl.Net
Mass processing data with a complete ETL for .net developers
Version Downloads Last updated
0.1.10-alpha-20241114-8ca53 353 11/14/2024
0.1.10-alpha-20241103-132ad 661 11/3/2024
0.1.10-alpha-20241031-d3bf6 184 10/31/2024
0.1.10-alpha-20241026-40af4 834 10/26/2024
0.1.10-alpha-20241019-e1060 578 10/19/2024
0.1.10-alpha-20241018-ea95a 125 10/18/2024
0.1.10-alpha-20241016-e903b 263 10/16/2024
0.1.10-alpha-20241013-f4054 201 10/13/2024
0.1.10-alpha-20241008-a2580 761 10/8/2024
0.1.10-alpha-20241007-c4672 372 10/7/2024
0.1.9 145,631 10/6/2024
0.1.9-alpha-20240930-eb9a1 3,092 9/30/2024
0.1.9-alpha-20240910-4845f 39,130 9/10/2024
0.1.9-alpha-20240909-09bdd 1,063 9/9/2024
0.1.9-alpha-20240904-cd2a8 1,359 9/4/2024
0.1.9-alpha-20240903-f4d14 715 9/3/2024
0.1.9-alpha-20240902-cf45d 592 9/2/2024
0.1.9-alpha-20240901-b824f 134 9/1/2024
0.1.9-alpha-20240821-b4649 5,409 8/21/2024
0.1.9-alpha-20240721-a99c0 21,538 7/21/2024
0.1.9-alpha-20240702-65c64 9,562 7/2/2024
0.1.9-alpha-20240628-bac00 7,536 6/28/2024
0.1.9-alpha-20240626-14e70 939 6/26/2024
0.1.9-alpha-20240625-dc933 605 6/25/2024
0.1.9-alpha-20240612-d2cae 4,381 6/12/2024
0.1.9-alpha-20240609-affc1 955 6/9/2024
0.1.9-alpha-20240601-65a18 2,308 6/1/2024
0.1.9-alpha-20240530-d7e43 757 5/30/2024
0.1.9-alpha-20240510-d86c2 9,802 5/10/2024
0.1.9-alpha-20240509-5a8e6 187 5/9/2024
0.1.9-alpha-20240508-995f2 272 5/8/2024
0.1.9-alpha-20240507-93779 255 5/7/2024
0.1.9-alpha-20240506-b6e03 188 5/6/2024
0.1.9-alpha-20240504-da44e 158 5/4/2024
0.1.9-alpha-20240429-7f42a 4,088 4/29/2024
0.1.9-alpha-20240419-1ef2e 7,167 4/19/2024
0.1.9-alpha-20240413-0f707 9,038 4/13/2024
0.1.9-alpha-20240406-2d6cb 3,474 4/6/2024
0.1.9-alpha-20240402-f6292 6,928 4/2/2024
0.1.9-alpha-20240324-e7896 4,713 3/24/2024
0.1.9-alpha-20240318-69e2b 11,619 3/18/2024
0.1.9-alpha-20240312-845e3 3,099 3/12/2024
0.1.9-alpha-20240307-ac027 1,790 3/7/2024
0.1.9-alpha-20240219-c2536 29,675 2/19/2024
0.1.9-alpha-20240217-f4e75 428 2/17/2024
0.1.9-alpha-20240216-f78b1 338 2/16/2024
0.1.9-alpha-20240215-3bdc9 1,908 2/15/2024
0.1.9-alpha-20240208-19734 4,598 2/8/2024
0.1.9-alpha-20240207-23445 1,369 2/7/2024
0.1.9-alpha-20240128-f886e 7,005 1/28/2024
0.1.9-alpha-20240121-04fc8 9,392 1/21/2024
0.1.9-alpha-20240117-096eb 5,183 1/17/2024
0.1.9-alpha-20240116-4e63e 831 1/16/2024
0.1.9-alpha-20240115-0da7b 868 1/15/2024
0.1.9-alpha-20240114-5953c 448 1/14/2024
0.1.9-alpha-20240112-83519 1,665 1/12/2024
0.1.9-alpha-20240111-88a14 823 1/11/2024
0.1.9-alpha-20240109-8cfaa 8,949 1/9/2024
0.1.9-alpha-20240108-18144 602 1/8/2024
0.1.9-alpha-20231119-4537e 17,092 11/19/2023
0.1.9-alpha-20231113-1bc0e 9,575 11/13/2023
0.1.9-alpha-20231029-17d50 5,425 10/29/2023
0.1.9-alpha-20231026-63096 5,557 10/26/2023
0.1.9-alpha-20231023-ba865 1,959 10/23/2023
0.1.9-alpha-20231019-c6e2d 4,308 10/19/2023
0.1.9-alpha-20230930-06ac8 7,322 9/30/2023
0.1.9-alpha-20230914-d59d2 6,516 9/14/2023
0.1.9-alpha-20230827-ee756 11,902 8/27/2023
0.1.9-alpha-20230806-4a480 8,960 8/6/2023
0.1.8 2,755,351 6/5/2023
0.1.8-alpha-20230605-7fe5f 994 6/5/2023
0.1.8-alpha-20230529-6daa2 6,634 5/29/2023
0.1.8-alpha-20230528-5126d 938 5/28/2023
0.1.8-alpha-20230524-20d3c 3,886 5/24/2023
0.1.8-alpha-20230523-11df5 950 5/23/2023
0.1.8-alpha-20230522-c3dd6 1,358 5/22/2023
0.1.8-alpha-20230423-3898f 38,100 4/23/2023
0.1.8-alpha-20230420-147b8 1,140 4/20/2023
0.1.8-alpha-20230419-2d72d 1,262 4/19/2023
0.1.8-alpha-20230417-cdc3d 1,351 4/17/2023
0.1.8-alpha-20230415-9eb79 1,080 4/15/2023
0.1.8-alpha-20230414-42e41 973 4/14/2023
0.1.8-alpha-20230413-46a04 1,072 4/13/2023
0.1.8-alpha-20230412-db058 1,711 4/12/2023
0.1.8-alpha-20230411-0e39b 1,095 4/11/2023
0.1.8-alpha-20230403-2e062 9,981 4/3/2023
0.1.8-alpha-20230331-bd4ee 18,815 3/31/2023
0.1.8-alpha-20230327-2daba 7,098 3/27/2023
0.1.8-alpha-20230326-58b33 1,101 3/26/2023
0.1.8-alpha-20230324-a3a9d 1,321 3/24/2023
0.1.8-alpha-20230323-a4861 1,117 3/23/2023
0.1.8-alpha-20230320-c024e 1,493 3/20/2023
0.1.8-alpha-20230318-a5c91 1,076 3/18/2023
0.1.8-alpha-20230219-999f9 2,736 2/19/2023
0.1.8-alpha-20230117-88aad 5,273 1/17/2023
0.1.8-alpha-20230109-65bc7 1,508 1/9/2023
0.1.7 778,152 12/13/2022
0.1.7-alpha-20221212-c8874 72,446 12/12/2022
0.1.7-alpha-20221210-2aed9 1,033 12/10/2022
0.1.7-alpha-20220814-2f9a9 6,290 8/14/2022
0.1.7-alpha-20220703-545d1 3,028 7/3/2022
0.1.7-alpha-20220622-fc71a 1,196 6/22/2022
0.1.7-alpha-20220618-f2188 1,053 6/18/2022
0.1.7-alpha-20220525-559f3 4,590 5/25/2022
0.1.7-alpha-20220511-ddab5 2,335 5/11/2022
0.1.7-alpha-20220503-4e490 1,881 5/3/2022
0.1.7-alpha-20220426-03692 1,187 4/26/2022
0.1.6 1,160,368 4/25/2022
0.1.6-alpha-20220425-2576c 1,125 4/25/2022
0.1.6-alpha-20220423-801a3 1,084 4/23/2022
0.1.6-alpha-20220415-cbd02 1,725 4/15/2022
0.1.6-alpha-20220411-09a62 1,216 4/11/2022
0.1.6-alpha-20220405-c2ecb 1,774 4/5/2022
0.1.6-alpha-20220404-6b085 1,070 4/4/2022
0.1.6-alpha-20220315-9c83e 3,894 3/15/2022
0.1.6-alpha-20220220-b0a5f 3,404 2/20/2022
0.1.6-alpha-20220116-e54cd 2,268 1/16/2022
0.1.6-alpha-20220113-5b66e 1,049 1/13/2022
0.1.6-alpha-20220112-b89c8 1,102 1/12/2022
0.1.6-alpha-20220111-41bfa 1,939 1/11/2022
0.1.5 974,020 9/17/2021
0.1.5-alpha002 5,169 5/9/2021
0.1.5-alpha001 25,843 2/28/2021
0.1.5-alpha-20211231-a57e5 2,522 12/31/2021
0.1.5-alpha-20211026-55244 1,091 10/26/2021
0.1.5-alpha-20210929-615e8 1,150 9/29/2021
0.1.5-alpha-20210918-4c36f 1,126 9/18/2021
0.1.5-alpha-20210828-e8f91 1,124 8/28/2021
0.1.5-alpha-20210827-e8f91 1,149 8/27/2021
0.1.5-alpha-20210817-b1f88 1,147 8/17/2021
0.1.4 622,934 11/29/2020
0.1.3 50,597 11/15/2020
0.1.3-alpha001 2,786 9/4/2020
0.1.2 248,471 7/4/2020
0.1.2-alpha003 1,336 6/20/2020
0.1.2-alpha002 3,603 5/10/2020
0.1.2-alpha001 1,374 4/25/2020
0.1.1 133,778 3/18/2020
0.1.1-alpha001 1,368 3/15/2020
0.1.0 201,949 1/13/2020
0.1.0-beta002 1,256 1/8/2020
0.1.0-beta001 1,255 1/6/2020
0.0.11 2,128 12/17/2019
0.0.10 1,778 12/9/2019
0.0.9 109,347 8/13/2019
0.0.7 1,723 8/3/2019
0.0.6 2,745 5/19/2019
0.0.5 17,932 12/30/2018
0.0.3 1,559 11/27/2018
0.0.1 10,740 2/26/2018
0.0.1-alpha-002 1,581 1/21/2018
0.0.1-alpha-001 1,570 1/10/2018