PDFRasterizer.NET 4.0 is now available. Supports .NET Core. Renders pixel-perfectly.

PDFRasterizer.NET 3.0

Print, Render, View and Rasterize PDF or print PDF documents directly to GDI+, WPF or XPS.
Documentation
Download PDFRasterizer.NET 3.0
We will send you a download link

  • This field is for validation purposes and should be left unchanged.
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
This code sample shows how you can render text using a system font. Read this Tall Components code sample or search our code sample base.
PDF to grayscale TIFF
In the .NET framework the support for grayscale bitmaps is a bit puzzling. There is a way to convert PDF to grayscale Tiff in C#.
Display PDF in a WPF app and stay responsive – the code
This article helps how to stay responsive while rendering a a PDF document in a WPF application. Read this or search our code sample base.
C# Print PDF documents from a WPF application
This code sample shows how to print PDF documents from a WPF application using C#. Read this code sample or search our code sample base.
Change colors of black-and-white TIFF after converting from PDF
In this article, we will demonstrate how to change the color palette after converting a PDF document to 1bpp TIFF in C#.
Convert PDF to PNG using WPF
In this code sample we take a look how you can create PNG images from a PDF using the Windows Presentation Foundation.
Convert PDF to an image using a dither matrix
This code sample shows how to convert a PDF page to a bitmap image, while applying a dither matrix to the generated image.
Font mapping
If you have a PDF document which uses non-embedded fonts, you can specify your font substitution map to specify which fonts need to be used.
Convert PDF with layers to image
In the code sample below you see how you can incorporate multiple layers into your rendering process. Read or search our code sample base.
C# Print PDF Document
C# Print PDF? With this sample you can get an impression of how to print a PDF in C#. Read this code sample or search our code sample base!
... and 8 more
Render PDF with ResolveFont event handler
When you try to render a PDF which uses non-system fonts, you can add your own specified fonts to make sure it is rendered correctly.
Render PDF to EMF
This code sample helps render PDF to EMF. Read this Tall Components code sample or search our code sample base.
Convert PDF to XPS
In this sample you can see how you convert your PDF document to an XPS format (which is Microsoft Windows' version of PDF).
Convert PDF to JPG in C#
This code sample shows how to convert PDF to JPG or JPEG in C#. Read this Tall Components code sample or search our code sample base.
Convert PDF to multipage TIFF in C# .NET
This article shows how to convert PDF to multipage TIFF in C# using PDFRasterizer.NET 3.0. Read or search our code sample base.
Convert multiple PDF pages to bitmap
In this article, we will convert multple pages of a PDF to a single bitmap. Read this code sample or search our code sample base.
Render a PDF to bitmap
This article explains the most basic way to convert PDF to bitmap. Read this code sample or search our code sample base.
Use multiple licenses
This code sample explains how to register multiple license keys with a single application. Read or search our code sample base.
// 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
Cloud
Redistribute
Email support 1 year
Maintenance 1 year
Upgrades 1 year
Renewal 25%
Quantity:
Price:990825720
Email support 1 year
Maintenance 1 year
Upgrades 1 year

Deploy our software to cloud infrastructure such as Azure or AWS without limitations on scalability or elasticity.

Email support 1 year
Maintenance 1 year
Upgrades 1 year

Deploy our software to multiple servers or multiple desktops. Either in-house or at your customer’s site.

Licensing
Want to get to know more about our license model?
Read more