PDFRasterizer.NET 3.0
Print, Render, View and Rasterize PDF or print PDF documents directly to GDI+, WPF or XPS.


Download PDFRasterizer.NET 3.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
Convert PDF to JPG, PNG, etc.
Convert pages to XPS
Print PDF unattended
Convert to multi-page TIFF
Nu unmanaged code
Progressive rendering
Render annotations selectively
Render layers selectively
No results
How to use a system font for rendering text
PDF to grayscale TIFF
Display PDF in a WPF app and stay responsive – the code
C# Print PDF documents from a WPF application
Change colors of black-and-white TIFF after converting from PDF
Convert PDF to PNG using WPF
Convert PDF to an image using a dither matrix
Font mapping
Convert PDF with layers to image
C# Print PDF Document
... and
8
more
Render PDF with ResolveFont event handler
Render PDF to EMF
Convert PDF to XPS
Convert PDF to JPG in C#
Convert PDF to multipage TIFF in C# .NET
Convert multiple PDF pages to bitmap
Render a PDF to bitmap
Use multiple licenses
// open pdf and select first page
var stream = File.Create("report.pdf");
var pdf = new Document(stream);
var page = pdfDocument.Pages[0];
// create a bitmap to draw to and a graphics object
using (var bitmap = new Bitmap(page.Width, page.Height))
using (var graphics = Graphics.FromImage(bitmap))
{
// draw thefirst page to the graphics object
page.Draw(graphics);
bitmap.Save("out.png");
}
Convert to BMP
Render a PDF page to any raster image at any resolution.
// open pdf
var fileIn = File.Create("report.pdf");
var pdf = new Document(fileIn);
// configure output
var options = new ConvertToTiffOptions
{
Compression = TiffCompression.CcittG4;
Resolution = 150;
PixelFormat = PixelFormat.Bw1Bpp;
};
// render pdf to tiff
using (var fileOut = File.Create("report.tiff"))
{
document.ConvertToTiff(fileOut, options);
}
Convert PDF to multipage TIFF
Convert PDF to multipage TIFF. Configure resolution, compression and pixel format. It is also possible to customise dithering when approximating color as black-and-white.
Select currency
Licensing
Want to get to know more about our license model?