NReco.PdfRenderer
1.2.2
Prefix Reserved
See the version list below for details.
dotnet add package NReco.PdfRenderer --version 1.2.2
NuGet\Install-Package NReco.PdfRenderer -Version 1.2.2
<PackageReference Include="NReco.PdfRenderer" Version="1.2.2" />
paket add NReco.PdfRenderer --version 1.2.2
#r "nuget: NReco.PdfRenderer, 1.2.2"
// Install NReco.PdfRenderer as a Cake Addin #addin nuget:?package=NReco.PdfRenderer&version=1.2.2 // Install NReco.PdfRenderer as a Cake Tool #tool nuget:?package=NReco.PdfRenderer&version=1.2.2
PdfRenderer converts PDF to images (png, jpg, tiff) or text from C#/.NET (wrapper for poppler tools). Component can render PDF pages to image for preview/thumbnail with custom resolution; useful for viewing PDFs without installed PDF viewer. Poppler tool (pdftoppm, pdfinfo, pdfimages, pdftotext) binaries are extracted on first use and you don't need to deploy them separately (only for Windows env).
Product | Versions 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 | netcoreapp1.0 was computed. netcoreapp1.1 was computed. netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard1.5 is compatible. netstandard1.6 was computed. netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net20 is compatible. net35 was computed. net40 was computed. net403 was computed. net45 was computed. net451 was computed. net452 was computed. net46 was computed. 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 | tizen30 was computed. 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. |
-
.NETFramework 2.0
- No dependencies.
-
.NETStandard 1.5
- CoreCompat.System.Drawing (>= 1.0.0-beta006)
- NETStandard.Library (>= 1.6.0)
- System.Diagnostics.Process (>= 4.1.0)
- System.Reflection (>= 4.1.0)
- System.Reflection.Primitives (>= 4.0.1)
- System.Security.Cryptography.Algorithms (>= 4.2.0)
- System.Security.Cryptography.Cng (>= 4.2.0)
- System.Threading.Thread (>= 4.0.0)
-
.NETStandard 2.0
- System.Drawing.Common (>= 4.5.0-preview1-26216-02)
- System.Security.Cryptography.Cng (>= 4.4.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
1.6.0 | 1,172 | 10/8/2024 |
1.5.4 | 3,461 | 7/23/2024 |
1.5.3 | 30,834 | 11/18/2023 |
1.5.2 | 4,706 | 10/16/2023 |
1.5.1 | 103,098 | 9/21/2022 |
1.5.0 | 20,371 | 7/16/2022 |
1.4.1 | 102,997 | 10/13/2021 |
1.4.0 | 13,964 | 7/25/2021 |
1.3.1 | 71,271 | 8/24/2020 |
1.3.0 | 59,441 | 5/22/2020 |
1.2.3 | 1,823 | 4/27/2020 |
1.2.2 | 118,940 | 8/25/2018 |
1.2.0 | 16,860 | 8/16/2018 |
1.1.2 | 34,703 | 4/11/2018 |
1.1.1 | 7,668 | 11/28/2017 |
1.1.0 | 1,765 | 11/7/2017 |
1.0.3 | 32,431 | 6/18/2017 |
1.0.1 | 8,153 | 1/6/2017 |
Convert PDF to image online demo, usage examples: https://www.nrecosite.com/pdf_to_image_renderer_net.aspx
Notes:
- without a license key PdfRenderer works in TRIAL MODE (with some limitations / trial notices).
- can be used in .NET Core apps; in case of non-Windows platform (like Linux) poppler tools should be deployed/installed separately.
1.2.2 changes:
- fixed parse issue with PdfImages.GetPdfImagesList ('pdfimages -list')
1.2.1 changes:
- added PdfInfo.GetPdfInfo overload that can read PDF from Stream
- added workaround for known 'pdftoppm' issue with TIFF output on windows
- added PdfImages wrapper API for 'pdfimages' (extract images from PDF or get list of images in PDF)
- added PdfToTextConverter wrapper API for 'pdftotext' (extract text from PDF, possibly with layout metadata)
1.2.0 changes:
- poppler for windows updated to latest 0.67
- added GenerateImage and GenerateImages overloads that accept Stream as input
1.1.2 changes:
- use System.Drawing.Common instead of CoreCompat.System.Drawing.v2 in netstandard20 build