GfxSetPixel
- set pixel at specified position to specified color

Low-level graphics
(AmiBroker 50)


SYNTAX GfxSetPixel( x, y, color )
RETURNS NOTHING
FUNCTION Sets the pixel at the specified x, y coordinates to the specified color. The point must be in the visible part drawing surface (otherwise it won't be painted). Parameters
  • x - Specifies the x-coordinate of the point.
  • y - Specifies the y-coordinate of the point.
  • color - specifies the color to be used to paint the point

NOTE: This is LOW-LEVEL graphic function. To learn more about low-level graphic functions please read TUTORIAL: Using low-level graphics.

EXAMPLE GfxSetPixel( 20, 20 );
SEE ALSO GfxLineTo() function , GfxMoveTo() function

References:

The GfxSetPixel function is used in the following formulas in AFL on-line library:

More information:

See updated/extended version on-line.