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




In This Topic
    DeskewMode Property
    In This Topic
    Gets or sets deskew behavior used by the Preprocess method.
    Syntax
    'Declaration
     
    Public Property DeskewMode As ImGearOCRDeskewMode
    'Usage
     
    Dim instance As ImGearOCRPreprocessingSettings
    Dim value As ImGearOCRDeskewMode
     
    instance.DeskewMode = value
     
    value = instance.DeskewMode
    public ImGearOCRDeskewMode DeskewMode {get; set;}
    public: __property ImGearOCRDeskewMode get_DeskewMode();
    public: __property void set_DeskewMode( 
       ImGearOCRDeskewMode value
    );
    public:
    property ImGearOCRDeskewMode DeskewMode {
       ImGearOCRDeskewMode get();
       void set (    ImGearOCRDeskewMode value);
    }

    Property Value

    ImGearOCRDeskewMode enumeration value.
    Remarks

    This property specifies which image deskewing mode will be used during preprocessing. Deskewing mode can be automatic, programmable, or turned off entirely.

    Alternatively, deskewing can be performed manually by the Deskew method.

    See Also