GdPicture.NET.14
GdPicture14 Namespace / GdPictureOCR Class / EnableOrientationDetection Property
Example





EnableOrientationDetection Property (GdPictureOCR)
Specifies, whether the engine will try to detect the page orientation, means the page standard rotation, automatically during subsequent OCR processes. Enabling this options may noticeably slow down the engine's performance.
Syntax
'Declaration
 
Public Property EnableOrientationDetection As Boolean
 

Property Value

The default value is false, that means the automatic detection of a page orientation is not activated.
Remarks
Please be aware that enabling the automatic page orientation detection may noticeably slow down the engine's performance.
Example
How to enable the automatic page orientation detection.
Using gdpictureOCR As GdPictureOCR = New GdPictureOCR()
 
    gdpictureOCR.EnableOrientationDetection = True
 
    'You can do your another stuff with gdpictureOCR here.
End Using
See Also