pixel()
->pixel(SergiX44\ImageZen\Draws\Color $color, int $x, int $y): SergiX44\ImageZen\Image
Change color of a single pixel.
Parameters
SergiX44\ImageZen\Draws\Color $color
: The color to useint $x
: The x-coordinate of the pixelint $y
: The y-coordinate of the pixel
Returns
Instance of SergiX44\ImageZen\Image
.
Example
use SergiX44\ImageZen\Image;
$image = Image::make('path/to/image.jpg')
->pixel(\SergiX44\ImageZen\Draws\Color::red(), 10, 10); // set the color of the pixel at (10, 10) to red