
docnet aims to be a fast PDF editing and data extraction library. It is a .NET Standard 2.0 wrapper for PDFium C++ library that is used by chromium.
PDFium version: 5445
Supported platforms:
Render PDF page as PNG and display all character bounding boxes: example
![]()
Note: If you have issues running on Linux make sure that libgdiplus is installed since this example uses System.Drawing.Common.
Convert JPEG file to PDF: example
Newer versions of .NET Framework are also supported, Docnet.Core.targets tries to automatically find which version of the native PDFium binary to copy but that can sometime be unreliable especially if running on AnyCPU. You can manually specify DocnetRuntime property in your project file to influence which library version to copy. Allowed values are win-x64, win-x86, linux and osx.
Example below makes sure that we always copy x64 binary on windows:
<PropertyGroup>
<DocnetRuntime Condition=" '$([MSBuild]::IsOsPlatform(Windows))' ">win-x64</DocnetRuntime>
</PropertyGroup>
C#
99.0%

docnet aims to be a fast PDF editing and data extraction library. It is a .NET Standard 2.0 wrapper for PDFium C++ library that is used by chromium.
PDFium version: 5445
Supported platforms:
Render PDF page as PNG and display all character bounding boxes: example
![]()
Note: If you have issues running on Linux make sure that libgdiplus is installed since this example uses System.Drawing.Common.
Convert JPEG file to PDF: example
Newer versions of .NET Framework are also supported, Docnet.Core.targets tries to automatically find which version of the native PDFium binary to copy but that can sometime be unreliable especially if running on AnyCPU. You can manually specify DocnetRuntime property in your project file to influence which library version to copy. Allowed values are win-x64, win-x86, linux and osx.
Example below makes sure that we always copy x64 binary on windows:
<PropertyGroup>
<DocnetRuntime Condition=" '$([MSBuild]::IsOsPlatform(Windows))' ">win-x64</DocnetRuntime>
</PropertyGroup>
C#
99.0%