Lines Matching refs:image
12 $image = imagecreatetruecolor(500, 500);
13 $red = imagecolorallocate($image, 255, 0, 0);
14 imagefill($image, 0, 0, $red);
15 $cropped = imagecrop($image, ['x' => 0, 'y' => 0, 'width' => 250, 'height' => 250]);
17 imagedestroy($image);
21 $image = imagecreate(500, 500);
22 imagecolorallocate($image, 0, 0, 255); // first palette color = background
23 $red = imagecolorallocate($image, 255, 0, 0);
24 imagefill($image, 0, 0, $red);
25 $cropped = imagecrop($image, ['x' => 0, 'y' => 0, 'width' => 250, 'height' => 250]);
27 imagedestroy($image);