Lines Matching refs:image
14 // create a blank image
15 $image = imagecreatetruecolor(400, 300);
18 $bg = imagecolorallocate($image, 0, 0, 0);
21 $col_poly = imagecolorallocate($image, 255, 0, 0);
24 imagepolygon($image, array (
32 imagepng($image, $dest);
34 $col1 = imagecolorat($image, 100, 200);
35 $col2 = imagecolorat($image, 100, 100);
36 $color1 = imagecolorsforindex($image, $col1);
37 $color2 = imagecolorsforindex($image, $col2);
40 imagedestroy($image);