Integrate PDF viewing, printing, format conversion, and text extraction into DotImage. DotImage PDF Reader Add-On quickly decodes PDF documents into color or grayscale raster images, seamlessly plugging into DotImage and associated image viewing components as an image decoder. Supports simple image only PDF's as well as complicated PDF's with vectors, text, patterns, and transparency. Extract the images out of the PDF, rasterize the vector objects to a new image, or render directly onto a printer with zero Adobe Acrobat dependencies. Requires any edition of
DotImage and PDF Reader is included as part of the comprehensive
Web Viewing Suite.
Example Code
This simple example demonstrates how to view a PDF image. Included with the SDK is source for a full multi-threaded, multi-page PDF Viewer.
[C#]
using Atalasoft.Imaging;
using Atalasoft.Imaging.Codec;
...
//register the PdfDecoder
PdfDecoder pdf = new PdfDecoder();
RegisteredDecoders.Decoders.Add(pdf);
//read and display the PDF
myWorkspaceViewer.Open("pdfdocument.pdf");
[Visual Basic]
Imports Atalasoft.Imaging
Imports Atalasoft.Imaging.Codec
...
'register the PdfDecoder
Dim pdf As PdfDecoder = New PdfDecoder()
RegisteredDecoders.Decoders.Add(pdf)
'read and display the PDF
myWorkspaceViewer.Open("pdfdocument.pdf")
Note: Support for generating Image Only PDF documents is included in DotImage Document Imaging. Support for generating Searchable PDF from OCR is included with our OCR Searchable PDF Add-On.