VintaSoft Imaging .NET SDK 12.4: Documentation for .NET developer
Vintasoft.Imaging.ImageProcessing.Color Namespace / ChannelRemapSettings Class / ChannelRemapSettings Constructors / ChannelRemapSettings Constructor(Int32,Int32,Double)
Syntax Remarks Requirements SeeAlso
In This Topic
    ChannelRemapSettings Constructor(Int32,Int32,Double)
    In This Topic
    Initializes a new instance of the ChannelRemapSettings class with explicit parameters.
    Syntax
    'Declaration
    
    Public Function New( _
    ByVal inputMin
    The minimum input level. Must be in range from 0 (black) to 255 (white).
    As System.Int32, _
    ByVal inputMax
    The maximum input level. Must be in range from 0 (black) to 255 (white).
    As System.Int32, _
    ByVal gamma
    The gamma value. Must be greater than 0.
    As Double _
    )
    public ChannelRemapSettings(
    System.Int32 inputMin,
    System.Int32 inputMax,
    double gamma
    )
    public: ChannelRemapSettings(
    System.Int32 inputMin,
    System.Int32 inputMax,
    double gamma
    )
    public:
    ChannelRemapSettings(
    System.Int32 inputMin,
    System.Int32 inputMax,
    double gamma
    )

    Parameters

    inputMin
    The minimum input level. Must be in range from 0 (black) to 255 (white).
    inputMax
    The maximum input level. Must be in range from 0 (black) to 255 (white).
    gamma
    The gamma value. Must be greater than 0.
    Remarks

    This constructor uses 0 (black) as the minimum output level and 255 (white) as the maximum output level.

    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