SetArgb32Pixel

RasterImage.SetArgb32Pixel method

Sets an image 32-bit ARGB pixel for the specified position.

public void SetArgb32Pixel(int x, int y, int argb32Color)
ParameterTypeDescription
xInt32The pixel x location.
yInt32The pixel y location.
argb32ColorInt32The 32-bit ARGB pixel for the specified position.

Examples

The following example loads a raster image, and sets the color of an arbitrary pixel.

[C#]

using (Aspose.Imaging.Image image = Aspose.Imaging.Image.Load(@"c:\temp\sample.png"))
{
    Aspose.Imaging.RasterImage rasterImage = (Aspose.Imaging.RasterImage)image;

    // Sets the color of the top-left pixel.
    rasterImage.SetArgb32Pixel(0, 0, Aspose.Imaging.Color.Aqua.ToArgb());

    // Another way is to pass an instance of the Aspose.Imaging.Color directly
    rasterImage.SetPixel(0, 0, Aspose.Imaging.Color.Aqua);
}

See Also