VintaSoft Twain .NET SDK 15.1: Documentation for .NET developer
Vintasoft.WinTwain Namespace / Device Class / Halftones Property
Syntax Exceptions Remarks Example Requirements SeeAlso
In This Topic
    Halftones Property (Device)
    In This Topic
    Gets or sets the halftones for bit depth reduction of images for current scan session.
    Syntax
    'Declaration
    
    Public Property Halftones As String
    
    
    public string Halftones { get; set; }
    
    
    public: __property string* get_Halftones();
    public: __property void set_Halftones(
    string* value
    );
    public:
    property string^ Halftones { string^ get(); void set(string^ value); }
    Exceptions
    ExceptionDescription
    Thrown if device is in wrong state.
    Thrown if device does not support capability.
    Thrown if the .NET debugger is used and the function evaluation requires all threads to run.
    Remarks

    Call this property only when device is opened (State == DeviceState.Opened).

    Supported values of halftones can be received by the GetSupportedHalftones method.

    Important: Value of the BitDepthReductionMode property must be set to the BitDepthReductionMode.Halftones value before usage of this property.

    Example

    This C#/VB.NET code shows how to apply halftones to images acquired from the device.

    
    Public Sub ScanPaletteImageWithHalftones(device As Vintasoft.Twain.Device)
            device.ShowUI = False
            device.DisableAfterAcquire = True
    
            device.Open()
            device.PixelType = Vintasoft.Twain.PixelType.Gray
            device.BitDepthReductionMode = Vintasoft.Twain.BitDepthReductionMode.Halftones
            device.Halftones = "Dither Pattern 1"
            device.UnitOfMeasure = Vintasoft.Twain.UnitOfMeasure.Inches
            device.Resolution = New Vintasoft.Twain.Resolution(200F, 200F)
    
            device.Acquire()
    End Sub
    
    
    
    public void ScanPaletteImageWithHalftones(Vintasoft.Twain.Device device)
    {
        device.ShowUI = false;
        device.DisableAfterAcquire = true;
    
        device.Open();
        device.PixelType = Vintasoft.Twain.PixelType.Gray;
        device.BitDepthReductionMode = Vintasoft.Twain.BitDepthReductionMode.Halftones;
        device.Halftones = "Dither Pattern 1";
        device.UnitOfMeasure = Vintasoft.Twain.UnitOfMeasure.Inches;
        device.Resolution = new Vintasoft.Twain.Resolution(200f, 200f);
    
        device.Acquire();
    }
    
    

    Requirements

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

    See Also