VintaSoft Imaging .NET SDK 12.4: Documentation for .NET developer
Vintasoft.Imaging Namespace / VintasoftImage Class / SetPixelColor(Int32,Int32,ColorBase) Method
Syntax Requirements SeeAlso
In This Topic
    SetPixelColor(Int32,Int32,ColorBase) Method (VintasoftImage)
    In This Topic
    Sets the color of the specified pixel in this VintasoftImage.
    Syntax
    'Declaration
    
    Public Sub SetPixelColor( _
    ByVal x
    The x-coordinate of the pixel to set.
    As System.Int32, _
    ByVal y
    The y-coordinate of the pixel to set.
    As System.Int32, _
    ByVal color
    A ColorBase that represents the color to assign to the specified pixel.
    As Vintasoft.Imaging.ImageColors.ColorBase _
    )
    public void SetPixelColor(
    System.Int32 x,
    System.Int32 y,
    Vintasoft.Imaging.ImageColors.ColorBase color
    )
    public: void SetPixelColor(
    System.Int32 x,
    System.Int32 y,
    Vintasoft.Imaging.ImageColors.ColorBase* color
    )
    public:
    void SetPixelColor(
    System.Int32 x,
    System.Int32 y,
    Vintasoft.Imaging.ImageColors.ColorBase^ color
    )

    Parameters

    x
    The x-coordinate of the pixel to set.
    y
    The y-coordinate of the pixel to set.
    color
    A ColorBase that represents the color to assign to the specified pixel.
    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