Lines Matching refs:image
11 /* Prototype : bool imagepolygon ( resource $image , array $points , int $num_points , int $co…
13 * Source code: ext/standard/image.c
22 // create a blank image
23 $image = imagecreatetruecolor(400, 300);
26 $bg = imagecolorallocate($image, 0, 0, 0);
29 $col_poly = imagecolorallocate($image, 255, 0, 0);
32 imagepolygon($image, array (
41 imagepng($image, $dest);
43 $col1 = imagecolorat($image, 100, 200);
44 $col2 = imagecolorat($image, 100, 100);
45 $color1 = imagecolorsforindex($image, $col1);
46 $color2 = imagecolorsforindex($image, $col2);
49 imagedestroy($image);