Products | Support | Email a link to this topic. | Send comments on this topic. | Back to Introduction - All Topics | Help Version 19.0.4.3
|
Leadtools.Documents.Converters Namespace > DocumentConverterJobEventArgs Class : OcrPageImage Property |
public RasterImage OcrPageImage {get; set;}
'Declaration
Public Property OcrPageImage As RasterImage
'Usage
Dim instance As DocumentConverterJobEventArgs Dim value As RasterImage instance.OcrPageImage = value value = instance.OcrPageImage
public RasterImage getOcrPageImage() public void setOcrPageImage(RasterImage value)
public: property RasterImage^ OcrPageImage { RasterImage^ get(); void set ( RasterImage^ value); }
This value is always null if OCR is not used in the conversion and is not available with all operations.
By the default, the engine will get the image from the current DocumentPage. You can override this behavior by supplying your own raster image object when DocumentConverterJobOperation.LoadRasterImage is called during OCR conversion.
Refer to DocumentConverterJobOperation for more information.
For an example, refer to RunJob and RunJobAsync.