public RasterImage DecodeImage(string imageObjectNumber)
public RasterImage decodeImage(java.lang.String imageObjectNumber);
public:RasterImage^ DecodeImage(String^ imageObjectNumber)
def DecodeImage(self,imageObjectNumber):
imageObjectNumber
String that specifies the PDF image object number to decode.
A Leadtools.RasterImage object.
using Leadtools;using Leadtools.Codecs;using Leadtools.Controls;using Leadtools.Pdf;using Leadtools.Svg;using Leadtools.WinForms;public void PDFDocumentDecodeImageExample(){string sourceFileName = Path.Combine(LEAD_VARS.ImagesDir, @"Leadtools.pdf");string destinationFileName = Path.Combine(LEAD_VARS.ImagesDir, @"LEAD_pdfDecodeImage.tif");using (PDFDocument document = new PDFDocument(sourceFileName)){document.Resolution = 200;// Parse the objects in all pagesdocument.ParsePages(PDFParsePagesOptions.Objects, 1, -1);RasterCodecs codecs = new RasterCodecs();foreach (PDFDocumentPage page in document.Pages)if (page.Objects != null && page.Objects.Count > 0)foreach (PDFObject obj in page.Objects)if (obj.ObjectType == PDFObjectType.Image)using (RasterImage image = document.DecodeImage(obj.ImageObjectNumber))codecs.Save(image, destinationFileName, RasterImageFormat.TifLzw, image.BitsPerPixel, 1, 1, -1, CodecsSavePageMode.Append);codecs.Dispose();}}static class LEAD_VARS{public const string ImagesDir = @"C:\LEADTOOLS22\Resources\Images";}
Help Collections
Raster .NET | C API | C++ Class Library | HTML5 JavaScript
Document .NET | C API | C++ Class Library | HTML5 JavaScript
Medical .NET | C API | C++ Class Library | HTML5 JavaScript
Medical Web Viewer .NET
Multimedia
Direct Show .NET | C API | Filters
Media Foundation .NET | C API | Transforms
Supported Platforms
.NET, Java, Android, and iOS/macOS Assemblies
Imaging, Medical, and Document
C API/C++ Class Libraries
Imaging, Medical, and Document
HTML5 JavaScript Libraries
Imaging, Medical, and Document
