VintaSoft Imaging .NET SDK 12.4: Documentation for .NET developer
Vintasoft.Imaging.ImageProcessing.Document Namespace / AutoTextOrientationCommand Class / StripWidth Property
Syntax Remarks Requirements SeeAlso
In This Topic
    StripWidth Property (AutoTextOrientationCommand)
    In This Topic
    Gets or sets the width of strips, in pixels, for image scanning.
    Syntax
    'Declaration
    
    <DefaultValueAttribute(0)>
    <DescriptionAttribute("Width of strips, in pixels, for image scanning.
    0 - width of strips is calculated automatically for each image depending on its resolution; 20 and more - current value is used.")>
    Public Property StripWidth As System.Int32
    
    
    [DefaultValue(0)]
    [Description("Width of strips, in pixels, for image scanning.
    0 - width of strips is calculated automatically for each image depending on its resolution; 20 and more - current value is used.")]
    public System.Int32 StripWidth { get; set; }
    
    
    [DefaultValue(0)]
    [Description("Width of strips, in pixels, for image scanning.
    0 - width of strips is calculated automatically for each image depending on its resolution; 20 and more - current value is used.")]
    public: __property System.Int32 get_StripWidth();
    public: __property void set_StripWidth(
    System.Int32 value
    );
    [DefaultValue(0)]
    [Description("Width of strips, in pixels, for image scanning.
    0 - width of strips is calculated automatically for each image depending on its resolution; 20 and more - current value is used.")]
    public:
    property System.Int32 StripWidth { System.Int32 get(); void set(System.Int32 value); }

    Property Value

    0 - width of strips is calculated automatically for each image depending on its resolution;
    20 and more - current value is used for width of strips.
    Default value is 0 (automatically computed width of strips).
    Remarks

    Stripping the image improves orientation determination of documents with:

    • mixed textual and nontextual contents (graphics, tables, diagrams, etc)
    • slight skew
    • border noise

    If value of this property is set manually, it must be sufficiently large to cover at least 10-15 standard symbols in a text line.

    Requirements

    Target Platforms: .NET 8; .NET 7; .NET 6; .NET Framework 4.8, 4.7, 4.6, 4.5, 4.0, 3.5

    See Also