Accord.Imaging.UnmanagedImage.SetPixel C# (CSharp) 메소드

SetPixel() 공개 메소드

Set pixel with the specified coordinates to the specified color.

See SetPixel(int, int, Color) for more information.

public SetPixel ( IntPoint point, Color color ) : void
point IntPoint Point's coordiates to set color for.
color Color Color to set for the pixel.
리턴 void
        public void SetPixel(IntPoint point, Color color)
        {
            SetPixel(point.X, point.Y, color);
        }

Same methods

UnmanagedImage::SetPixel ( int x, int y, Color color ) : void
UnmanagedImage::SetPixel ( int x, int y, byte value ) : void
UnmanagedImage::SetPixel ( int x, int y, byte r, byte g, byte b, byte a ) : void