docnet alternatives and similar packages
Based on the "PDF" category.
Alternatively, view docnet alternatives based on common mentions on social networks and blogs.
-
ITextSharp
[DEPRECATED] .NET port of the iText library, only security fixes will be added — please use iText for .NET -
Docotic.Pdf
Docotic.Pdf library can create, edit, draw and print PDF files in .NET Core, ASP.NET, Windows Forms, WPF, Xamarin, Blazor, Unity, and HoloLense applications. The library is a 100% managed assembly without unsafe blocks. The assembly has no external dependencies. -
Pdfium.Net SDK
Advanced C# PDF library for render, create, edit, merge, split, print, and view PDFs. Open source PDF Viewer is available on GitHub. A NuGet package is also available for easy inclusion into your projects.[$] -
iTextSharp (LGPL / MPL) 4.1.6 for .NET Core
Unofficial .NET Core port of iTextSharp 4.1.6. Last version to be released under the Mozilla Public License and the LGPL. -
DocumentUltimate
DocumentUltimate is an ASP.NET Document Viewer and a .NET Document Converter which supports ASP.NET Core 5.0+, ASP.NET Core 2.1+, ASP.NET MVC 3.0+ and ASP.NET WebForms 4.7.2+ web applications/web sites. -
Gehtsoft.Barcodes
The cross-platform C# library to easily generate barcodes, including QR codes. The library allows application developers to add a variety of standard barcodes and QR codes using convenient API. -
Syncfusion .NET PDF Framework
This repo contains examples of the most popular PDF templates generated using Syncfusion's .NET PDF library. You can use these C# examples in your project to generate PDF documents automatically. -
QuestPDF
DISCONTINUED. QuestPDF is an open-source, modern and battle-tested library that can help you with generating PDF documents by offering friendly, discoverable and predictable C# fluent API. -
IronPDF
High-performance C# PDF library with compatibility for various .NET versions, HTML to PDF conversion, content page conversion, file format support (e.g., DOCX, RTF, MD), responsive layouts, and robust PDF capabilities features ranging from compability, generating PDFs, formatting PDFs, and editing PDFs. [$] [Free trial available] -
Cloudmersive PDF
Cloudmersive PDF is a native .NET Framework and .NET Core NuGet library and API service that can create, modify, encrypt or convert PDF documents at high scale and fidelity; and is free to use with no expiration [Free]
SaaSHub - Software Alternatives and Reviews
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of docnet or a related project?
README
[docNET](assets/header.png)
docnet
Description
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:
- win
- linux
- osx
Features
- [x] Extract PDF version
- [x] Extract page count
- [x] Extract page information
- [x] Get page width
- [x] Get page height
- [x] Get page text
- [x] Get characters
- [x] Get character boundaries
- [x] Get character font sizes
- [x] Get character angle
- [x] Render page to image
- [x] Split PDF document
- [x] Merge PDF document
- [x] Unlock PDF document
- [x] Convert JPEG files to PDF
Examples
- Render PDF page as PNG and display all character bounding boxes: [example](examples/nuget-usage/NugetUsageAnyCpu/PdfToImageExamples.cs)
[Render PDF page example](assets/demo_thumb_0.png)
**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](examples/nuget-usage/NugetUsageAnyCpu/ImageToPdfExamples.cs)
Usage
- DocLib.Instance should be treated as a singleton that lives as long as your application. It should only be disposed when you intend to clean all unmanaged resources of PDFium.
.NET Framework Support
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>