Gets the current image data of this page as a raster image.
Leadtools.RasterImage GetRasterImage()
Overloads Function GetRasterImage() As Leadtools.RasterImage
Leadtools.RasterImage GetRasterImage()
public RasterImage getRasterImage()
function Leadtools.Forms.Ocr.IOcrPage.GetRasterImage()()
Leadtools.RasterImage^ GetRasterImage();
A RasterImage object that represent the current image data of this page.
This method is the equivalent of calling GetRasterImage(OcrPageType.Current). For more information on the various copies of raster images used by the OCR page, refer to OcrPageType.
Once you add a page to an OCR document, the image data used to create the page is copied and stored inside the OCR engine even if the original object used to create the page was a RasterImage object. To get a RasterImage that represents this page, use GetRasterImage.
The RasterImage object that this method returns contains a copy of the page image data. Any modifications you make to the RasterImage object will not affect the page. To update the page image data, you must call SetRasterImage. Since the RasterImage object is a copy, you must dispose it by calling its RasterImage.Dispose method once you are done using it.
Once you obtain a RasterImage object for this page, you can use it with other parts of LEADTOOLS, for example, you can set it in the ImageViewer or RasterPictureBox controls for viewing inside your Windows Forms-based application. You can also perform your own image processing on the page as follows:
// Flip the 2nd page added to the OCR document
// Get the page (index is zero-based)
IOcrPage page = ocrDocument.Pages[1];
// Get a RasterImage object that represents this page
Leadtools.RasterImage image = page.GetRasterImage();
// Flip it vertically
Leadtools.ImageProcessing.FlipCommand flip = new Leadtools.ImageProcessing.FlipCommand();
flip.Horizontal = false;
flip.Run(image);
// Set it back into the page
page.SetRasterImage(image);
// Dispose the image
image.Dispose();
You can also get a RasterImage object representation of a page with the IOcrPageCollection.ExportPage methods.
The RasterImage object returned from this method will contain one page only. To get a multi-page RasterImage object containing the image data of all or a specific range of the pages added to the OCR document, you can either create a RasterImage from the first then loop through the pages of the document and add the returned RasterImage objects to the first object with the RasterImage.AddPage method. Or you can use the IOcrPageCollection.ExportPages methods.
For an example, refer to IOcrPage.
Products |
Support |
Feedback: GetRasterImage() Method - Leadtools.Forms.Ocr |
Introduction |
Help Version 19.0.2017.6.6
|
Raster .NET | C API | C++ Class Library | JavaScript HTML5
Document .NET | C API | C++ Class Library | JavaScript HTML5
Medical .NET | C API | C++ Class Library | JavaScript HTML5
Medical Web Viewer .NET
Your email has been sent to support! Someone should be in touch! If your matter is urgent please come back into chat.
Chat Hours:
Monday - Friday, 8:30am to 6pm ET
Thank you for your feedback!
Please fill out the form again to start a new chat.
All agents are currently offline.
Chat Hours:
Monday - Friday
8:30AM - 6PM EST
To contact us please fill out this form and we will contact you via email.