Lines Matching refs:image
8 $image = imagecreatetruecolor(500, 500);
9 $red = imagecolorallocate($image, 255, 0, 0);
10 imagefill($image, 0, 0, $red);
11 $cropped = imagecrop($image, ['x' => 0, 'y' => 0, 'width' => 250, 'height' => 250]);
13 imagedestroy($image);
17 $image = imagecreate(500, 500);
18 imagecolorallocate($image, 0, 0, 255); // first palette color = background
19 $red = imagecolorallocate($image, 255, 0, 0);
20 imagefill($image, 0, 0, $red);
21 $cropped = imagecrop($image, ['x' => 0, 'y' => 0, 'width' => 250, 'height' => 250]);
23 imagedestroy($image);