pixel — Draw a single pixel
Description
public Intervention\Image\Image pixel(mixed $color, integer $pos_x, integer $pos_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.
pos_x
X-Coordinate of the pixel.
pos_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
当前内容版权归 intervention 或其关联方所有,如需对内容或内容相关联开源项目进行关注与资助,请访问 intervention .