NReco.PdfRenderer 1.3.0

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package NReco.PdfRenderer --version 1.3.0
NuGet\Install-Package NReco.PdfRenderer -Version 1.3.0
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="NReco.PdfRenderer" Version="1.3.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add NReco.PdfRenderer --version 1.3.0
#r "nuget: NReco.PdfRenderer, 1.3.0"
#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 NReco.PdfRenderer as a Cake Addin
#addin nuget:?package=NReco.PdfRenderer&version=1.3.0

// Install NReco.PdfRenderer as a Cake Tool
#tool nuget:?package=NReco.PdfRenderer&version=1.3.0

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 x64 env).

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 net45 is compatible.  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 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.

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.5.3 7,457 11/18/2023
1.5.2 3,543 10/16/2023
1.5.1 67,372 9/21/2022
1.5.0 18,407 7/16/2022
1.4.1 96,297 10/13/2021
1.4.0 12,680 7/25/2021
1.3.1 62,912 8/24/2020
1.3.0 38,214 5/22/2020
1.2.3 1,732 4/27/2020
1.2.2 106,959 8/25/2018
1.2.0 12,924 8/16/2018
1.1.2 31,441 4/11/2018
1.1.1 6,900 11/28/2017
1.1.0 1,714 11/7/2017
1.0.3 27,936 6/18/2017
1.0.1 7,906 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).
- poppler 0.87 binaries for Windows x64 are included (extracted on first use)
- can be used in .NET Core apps; in case of non-Windows platform (Linux, MacOS) poppler tools should be deployed/installed separately.

1.3.0 changes:
- poppler x64 binaries for windows updated to 0.87 (2020-Mar-28). BEAKING: Win-x86 no longer supported
- new poppler build is faster, more stable, offers more features in comparing to previously used poppler binaries

1.2.3 changes:
- legacy net20 target is replaced with net45 (minimal .NET Framework version is 4.5)
- legacy netstandard1.5 target is removed as .NET Core 1.x reaches end-of-life

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)