TypeLib Xojo support Plugin |
|
RawBitmap.DrawPixel Method
Draws pixel on the RawBitmap, doing alpha blending as needed depending on the color passed in,

DrawPixel(
x
as Integer,
y
as Integer,
value
as Color)
Parameters
- x
- The x coordinate (zero based).
- y
- The y coordinate (zero based).
- value
- The color value to draw.
Remarks
The Pixel set / get method would set pixel to given value while this one alpha blends with what is under if the color you pass in has alpha value.
This method is not supported in CMYK color space, or 32bit floating point RGB color space. When used in unsupported color space the method will silently fail.
See Also
RawBitmap Class