Image::pixel

Draw a single pixel to the current image

3M Downloads / Month

Open Source MIT License

You are viewing the documentation for Intervention Image 2, this version has reached end of life (EOL). Please consider upgrading to version 3.

public Intervention\Image\Image pixel(mixed $color, integer $x, integer $y)

Draw a single pixel in given color on x, y position.

Parameters

color

The color of the pixel. Pass a color in one of the different color formats.

x

x-coordinate of the pixel.

y

y-coordinate of the pixel.

Return Values

Instance of Intervention\Image\Image

Examples

// create empty canvas with background color
$img = Image::canvas(100, 100, '#ddd');

// draw a blue pixel
$img->pixel('#0000ff', 32, 32);

// draw a red pixel
$img->pixel('#ff0000', 64, 64);

See also

Edit