ImageGear .NET v25.2 - Updated
ImageGear.OCR Assembly / ImageGear.OCR Namespace / ImGearOCRPreprocessingSettings Class / OrientationMode Property




In This Topic
    OrientationMode Property
    In This Topic
    Gets or sets orientation behavior.
    Syntax
    'Declaration
     
    Public Property OrientationMode As ImGearOCROrientationMode
    'Usage
     
    Dim instance As ImGearOCRPreprocessingSettings
    Dim value As ImGearOCROrientationMode
     
    instance.OrientationMode = value
     
    value = instance.OrientationMode
    public ImGearOCROrientationMode OrientationMode {get; set;}
    public: __property ImGearOCROrientationMode get_OrientationMode();
    public: __property void set_OrientationMode( 
       ImGearOCROrientationMode value
    );
    public:
    property ImGearOCROrientationMode OrientationMode {
       ImGearOCROrientationMode get();
       void set (    ImGearOCROrientationMode value);
    }

    Property Value

    ImGearOCROrientationMode enumeration value.
    Remarks

    This property specifies which image orientation mode will be used during the preprocessing. The image orientation mode can be automatic, switched off or programmable.

    Valid values are AUTO, NO, LEFT, RIGHT and DOWN.

    If this property is set to one of the FLIPPED ImGearOCROrientationMode values, a warning will be created and the orientation mode will not be changed from its current value. Use the ImGearOCRImage.Orient method if a flipped orientation is desired.

    See Also