VintaSoft Imaging .NET SDK 12.4: Documentation for .NET developer
Vintasoft.Imaging.ImageColors Namespace / Rgb16Color565 Class / Rgb16Color565 Constructors / Rgb16Color565 Constructor(Byte,Byte,Byte)
Syntax Requirements SeeAlso
In This Topic
    Rgb16Color565 Constructor(Byte,Byte,Byte)
    In This Topic
    Initializes a new instance of the Rgb16Color565 class.
    Syntax
    'Declaration
    
    Public Function New( _
    ByVal red
    The red component. Valid values are 0 through 31.
    As Byte, _
    ByVal green
    The green component. Valid values are 0 through 63.
    As Byte, _
    ByVal blue
    The blue component. Valid values are 0 through 31.
    As Byte _
    )
    public Rgb16Color565(
    byte red,
    byte green,
    byte blue
    )
    public: Rgb16Color565(
    byte red,
    byte green,
    byte blue
    )
    public:
    Rgb16Color565(
    byte red,
    byte green,
    byte blue
    )

    Parameters

    red
    The red component. Valid values are 0 through 31.
    green
    The green component. Valid values are 0 through 63.
    blue
    The blue component. Valid values are 0 through 31.
    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