PDFtoImage 2.0.0-preview
See the version list below for details.
dotnet add package PDFtoImage --version 2.0.0-preview
NuGet\Install-Package PDFtoImage -Version 2.0.0-preview
<PackageReference Include="PDFtoImage" Version="2.0.0-preview" />
paket add PDFtoImage --version 2.0.0-preview
#r "nuget: PDFtoImage, 2.0.0-preview"
// Install PDFtoImage as a Cake Addin
#addin nuget:?package=PDFtoImage&version=2.0.0-preview&prerelease
// Install PDFtoImage as a Cake Tool
#tool nuget:?package=PDFtoImage&version=2.0.0-preview&prerelease
PDFtoImage
A .NET library to render PDF files into images.
This .NET library is built on top of
- PDFium (native PDF renderer)
- PdfiumViewer (wrapper for PDFium)
- SkiaSharp (cross-platform 2D graphics API)
Getting started
Call a static method from PDFtoImage.Conversion
:
SaveJpeg
, SavePng
, SaveWebp
and ToImage
for a single page.
ToImages
and ToImagesAsync
for multiple pages.
Note: SkiaSharp.SKBitmap
can be exported with the Encode
method.
Product | Versions |
---|---|
.NET | net5.0 net5.0-windows net6.0 net6.0-android net6.0-ios net6.0-maccatalyst net6.0-macos net6.0-tvos net6.0-windows net7.0 net7.0-android net7.0-ios net7.0-maccatalyst net7.0-macos net7.0-tvos net7.0-windows |
.NET Core | netcoreapp3.1 |
.NET Framework | net461 net462 net463 net47 net471 net472 net48 net481 |
NuGet packages (2)
Showing the top 2 NuGet packages that depend on PDFtoImage:
Package | Downloads |
---|---|
PDFtoZPL
A .NET library to convert PDF files (and bitmaps) into Zebra Programming Language code. |
|
PdfOcr
Pdf OCR library based on paddle OCR |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated | |
---|---|---|---|
2.2.0 | 17,275 | 2/2/2023 | |
2.1.3 | 2,908 | 1/19/2023 | |
2.1.2 | 58,423 | 7/22/2022 | |
2.1.1 | 10,820 | 6/22/2022 | |
2.1.0 | 5,842 | 5/27/2022 | |
2.0.0 | 439 | 5/25/2022 | |
2.0.0-preview5 | 8,123 | 2/8/2022 | |
2.0.0-preview | 5,922 | 1/2/2022 | |
1.2.1 | 44,536 | 11/10/2021 | |
1.2.0 | 9,146 | 10/10/2021 | |
1.1.3 | 2,044 | 8/26/2021 | |
1.1.2 | 488 | 8/19/2021 | |
1.1.1 | 3,011 | 8/13/2021 | |
1.1.1-preview | 303 | 7/29/2021 | |
1.1.0 | 24,642 | 6/17/2021 | |
1.0.1 | 2,216 | 5/29/2021 | |
1.0.0 | 3,526 | 3/21/2021 |
- System.Drawing.Common (GDI+) replaced with SkiaSharp (cross-platform).
- SaveWebp added.
- SaveBmp, SaveGif and SaveTiff deprecated.