PdfPig 0.0.1-alpha-001

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

// Install PdfPig as a Cake Tool
#tool nuget:?package=PdfPig&version=0.0.1-alpha-001&prerelease

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

This project is based on PDFBox.

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.

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...

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;

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.

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

At this stage letter position is experimental and will change in future versions! Do not rely on letter positions remaining constant between different versions of this package.

Issues

Please do file an issue if you encounter a bug.

Status

Why is class or property X internal? With the exception of letter.Position internal properties and classes are not stable enough for the end user yet. If you want to access them feel free to use reflection but be aware they may change or disappear between versions.

The initial version of this package aims only to support reading text content from unencrypted PDF files. Due to the legal and dependency consequences of decrypting, handling encrypted documents is not in scope.

An encrypted document will throw a NotSupportedException.

We plan to eventually support writing PDFs as well as reading images, form objects and graphics from the PDF however these are future enhancements which do not feature in the first version.

Additionally most testing has taken place with Latin character sets. Due to the more complex way the PDF specification handles CJK (Chinese, Japanese and Korean) character sets these will probably not be handled correctly for now.

Please raise an issue (or preferably a pull request) if you're trying to read these documents however we may not get to it for a while depending on the volume of bugs.

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

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.

Tabula

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

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

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

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

The package contains all the core logic of Kernel Memory, to index and query any data and documents, using LLM and natural language, tracking sources and showing citations.

GitHub repositories (12)

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 AI Agent Framework in .NET
microsoft/kernel-memory
Index and query any data using LLM and natural language, tracking sources and showing citations.
paillave/Etl.Net
Mass processing data with a complete ETL for .net developers
Version Downloads Last updated
0.1.9-alpha-20240419-1ef2e 0 4/19/2024
0.1.9-alpha-20240413-0f707 553 4/13/2024
0.1.9-alpha-20240406-2d6cb 1,492 4/6/2024
0.1.9-alpha-20240402-f6292 192 4/2/2024
0.1.9-alpha-20240324-e7896 2,026 3/24/2024
0.1.9-alpha-20240318-69e2b 1,876 3/18/2024
0.1.9-alpha-20240312-845e3 2,569 3/12/2024
0.1.9-alpha-20240307-ac027 1,596 3/7/2024
0.1.9-alpha-20240219-c2536 7,539 2/19/2024
0.1.9-alpha-20240217-f4e75 275 2/17/2024
0.1.9-alpha-20240216-f78b1 225 2/16/2024
0.1.9-alpha-20240215-3bdc9 1,455 2/15/2024
0.1.9-alpha-20240208-19734 2,366 2/8/2024
0.1.9-alpha-20240207-23445 883 2/7/2024
0.1.9-alpha-20240128-f886e 3,858 1/28/2024
0.1.9-alpha-20240121-04fc8 2,729 1/21/2024
0.1.9-alpha-20240117-096eb 2,789 1/17/2024
0.1.9-alpha-20240116-4e63e 733 1/16/2024
0.1.9-alpha-20240115-0da7b 680 1/15/2024
0.1.9-alpha-20240114-5953c 354 1/14/2024
0.1.9-alpha-20240112-83519 1,566 1/12/2024
0.1.9-alpha-20240111-88a14 589 1/11/2024
0.1.9-alpha-20240109-8cfaa 4,654 1/9/2024
0.1.9-alpha-20240108-18144 497 1/8/2024
0.1.9-alpha-20231119-4537e 13,399 11/19/2023
0.1.9-alpha-20231113-1bc0e 4,499 11/13/2023
0.1.9-alpha-20231029-17d50 4,033 10/29/2023
0.1.9-alpha-20231026-63096 3,295 10/26/2023
0.1.9-alpha-20231023-ba865 1,145 10/23/2023
0.1.9-alpha-20231019-c6e2d 1,821 10/19/2023
0.1.9-alpha-20230930-06ac8 6,300 9/30/2023
0.1.9-alpha-20230914-d59d2 4,069 9/14/2023
0.1.9-alpha-20230827-ee756 11,449 8/27/2023
0.1.9-alpha-20230806-4a480 6,971 8/6/2023
0.1.8 1,019,208 6/5/2023
0.1.8-alpha-20230605-7fe5f 897 6/5/2023
0.1.8-alpha-20230529-6daa2 6,403 5/29/2023
0.1.8-alpha-20230528-5126d 859 5/28/2023
0.1.8-alpha-20230524-20d3c 2,529 5/24/2023
0.1.8-alpha-20230523-11df5 870 5/23/2023
0.1.8-alpha-20230522-c3dd6 1,236 5/22/2023
0.1.8-alpha-20230423-3898f 35,263 4/23/2023
0.1.8-alpha-20230420-147b8 1,040 4/20/2023
0.1.8-alpha-20230419-2d72d 1,161 4/19/2023
0.1.8-alpha-20230417-cdc3d 1,267 4/17/2023
0.1.8-alpha-20230415-9eb79 1,006 4/15/2023
0.1.8-alpha-20230414-42e41 885 4/14/2023
0.1.8-alpha-20230413-46a04 974 4/13/2023
0.1.8-alpha-20230412-db058 1,622 4/12/2023
0.1.8-alpha-20230411-0e39b 972 4/11/2023
0.1.8-alpha-20230403-2e062 6,870 4/3/2023
0.1.8-alpha-20230331-bd4ee 18,735 3/31/2023
0.1.8-alpha-20230327-2daba 4,787 3/27/2023
0.1.8-alpha-20230326-58b33 1,010 3/26/2023
0.1.8-alpha-20230324-a3a9d 1,153 3/24/2023
0.1.8-alpha-20230323-a4861 1,026 3/23/2023
0.1.8-alpha-20230320-c024e 1,391 3/20/2023
0.1.8-alpha-20230318-a5c91 982 3/18/2023
0.1.8-alpha-20230219-999f9 2,510 2/19/2023
0.1.8-alpha-20230117-88aad 3,943 1/17/2023
0.1.8-alpha-20230109-65bc7 1,347 1/9/2023
0.1.7 590,493 12/13/2022
0.1.7-alpha-20221212-c8874 71,218 12/12/2022
0.1.7-alpha-20221210-2aed9 914 12/10/2022
0.1.7-alpha-20220814-2f9a9 5,818 8/14/2022
0.1.7-alpha-20220703-545d1 2,215 7/3/2022
0.1.7-alpha-20220622-fc71a 1,074 6/22/2022
0.1.7-alpha-20220618-f2188 906 6/18/2022
0.1.7-alpha-20220525-559f3 3,764 5/25/2022
0.1.7-alpha-20220511-ddab5 2,221 5/11/2022
0.1.7-alpha-20220503-4e490 1,748 5/3/2022
0.1.7-alpha-20220426-03692 1,059 4/26/2022
0.1.6 960,525 4/25/2022
0.1.6-alpha-20220425-2576c 1,022 4/25/2022
0.1.6-alpha-20220423-801a3 976 4/23/2022
0.1.6-alpha-20220415-cbd02 1,507 4/15/2022
0.1.6-alpha-20220411-09a62 1,119 4/11/2022
0.1.6-alpha-20220405-c2ecb 1,665 4/5/2022
0.1.6-alpha-20220404-6b085 974 4/4/2022
0.1.6-alpha-20220315-9c83e 3,589 3/15/2022
0.1.6-alpha-20220220-b0a5f 3,094 2/20/2022
0.1.6-alpha-20220116-e54cd 2,060 1/16/2022
0.1.6-alpha-20220113-5b66e 939 1/13/2022
0.1.6-alpha-20220112-b89c8 1,013 1/12/2022
0.1.6-alpha-20220111-41bfa 1,340 1/11/2022
0.1.5 869,412 9/17/2021
0.1.5-alpha002 4,707 5/9/2021
0.1.5-alpha001 23,890 2/28/2021
0.1.5-alpha-20211231-a57e5 2,215 12/31/2021
0.1.5-alpha-20211026-55244 970 10/26/2021
0.1.5-alpha-20210929-615e8 1,045 9/29/2021
0.1.5-alpha-20210918-4c36f 1,021 9/18/2021
0.1.5-alpha-20210828-e8f91 1,032 8/28/2021
0.1.5-alpha-20210827-e8f91 1,018 8/27/2021
0.1.5-alpha-20210817-b1f88 1,055 8/17/2021
0.1.4 553,600 11/29/2020
0.1.3 44,329 11/15/2020
0.1.3-alpha001 2,518 9/4/2020
0.1.2 220,014 7/4/2020
0.1.2-alpha003 1,249 6/20/2020
0.1.2-alpha002 3,511 5/10/2020
0.1.2-alpha001 1,282 4/25/2020
0.1.1 122,287 3/18/2020
0.1.1-alpha001 1,253 3/15/2020
0.1.0 195,690 1/13/2020
0.1.0-beta002 1,180 1/8/2020
0.1.0-beta001 1,165 1/6/2020
0.0.11 1,991 12/17/2019
0.0.10 1,615 12/9/2019
0.0.9 108,555 8/13/2019
0.0.7 1,582 8/3/2019
0.0.6 2,608 5/19/2019
0.0.5 11,332 12/30/2018
0.0.3 1,473 11/27/2018
0.0.1 9,417 2/26/2018
0.0.1-alpha-002 1,500 1/21/2018
0.0.1-alpha-001 1,491 1/10/2018