Lines Matching refs:image
19 // create a blank image
20 $image = imagecreatetruecolor(400, 300);
23 $bg = imagecolorallocate($image, 0, 0, 0);
26 $col_poly = imagecolorallocate($image, 255, 0, 0);
29 imagepolygon($image, array (
37 imagepng($image, $dest);
39 $col1 = imagecolorat($image, 100, 200);
40 $col2 = imagecolorat($image, 100, 100);
41 $color1 = imagecolorsforindex($image, $col1);
42 $color2 = imagecolorsforindex($image, $col2);
45 imagedestroy($image);