You can download this software right after you purchase it.
This product is a Windows DLL.
When you buy this product, you'll receive one developer license and five runtime licenses. That's $475.00 for the developer license and $18.00 for each runtime license: a total of $565.00. This is the minimum required purchase for this product. If you need to purchase more than five runtime licenses, or if you already have a developer license and need to purchase additional runtime licenses, please contact us.
XpdfRasterizer is a very affordable programmer's toolkit that makes it easy to convert PDF pages to standard-format bitmap images.
XpdfRasterizer features include:
- converting a PDF page to a BMP, PNM, TIFF, JPEG, or PNG file
- converting a PDF page to an OLE Picture object (COM version only)
- converting a PDF page to an in-memory bitmap (DLL version only)
All of the above functions can generate monochrome, grayscale, and color bitmaps, at any resolution.
In addition, XpdfRasterizer can generate separations (CMYK + spot colors), with overprint simulation.
XpdfRasterizer is easy to use:
#include "XpdfRasterizer.h"
PDFHandle pdf;
int err;
err = pdfLoadFile(&pdf, "c:/test/file.pdf");
if (err != pdfOk) {
/* handle the error */
}
pdfWritePageBitmap(pdf, 1, 120, pdfImageRGB, pdfImageFileBMP, "c:/test/page1.bmp");