PDFRasterizer.NET 4.0
Render PDF pages pixel-perfect on Windows, MacOS and Linux


Download PDFRasterizer.NET 4.0
We will send you a download link
Why do we ask your email address?
We send tips that speed up your evaluation
We let you know about bug fixes
You can always unsubscribe with one click
We never share your address with a 3rd party
Thank you for your download
We have sent an email with a download link.
Features
.NET Core
new
.NET Framework
Xamarin
new
Render to Skia
new
Render to GDI+
Progressive rendering
Render layers
Render portfolio
new
No results
var pdf = new Document(pdfStream);
var page = pdf.Pages[0];
float resolution = 150f;
page.SaveAsBitmap(imageStream, ImageEncoding.Png, resolution);
Render as PNG or JPG
Render a PDF page as PNG or JPG at any resolution
var pdf = new Document(stream);
var page = pdf.Pages[0];
var box = page.CropBox ?? page.MediaBox;
var info = new SKImageInfo(width, height);
using (var surface = SKSurface.Create(info))
{
page.Draw(surface, info, 1);
}
Render to Skia surface
Starting with version 4.0, we use the Skia 2D graphics library to render PDF pages. It is possible to render directly to a Skia surface.
var pdf = new Document(pdfStream);
var options = new ConvertToTiffOptions
{
Resolution = 150f,
Compression = TiffCompression.Lzw,
PixelFormat = PixelFormat.Rgba32Bpp
};
pdf.ConvertToTiff(tiffStream, tiffOptions);
Render to multipage TIFF
Render a page to single-page TIFF or a document to multi-page TIFF. Specify options such as pixel format, compression and resolution.
Select currency
Licensing
Learn about our licensing model