Lines Matching refs:im
16 function testrun($im, $fontfile) {
17 $sx = imagesx($im);
18 $sy = imagesy($im);
20 $colour_w = imagecolorallocate($im, 255, 255, 255);
21 $colour_b = imagecolorallocate($im, 0, 0, 0);
23 imagefilledrectangle($im, 0, 0, $sx - 1, $sy - 1, $colour_b);
24 imagefttext($im, $sy * 0.75, 0, 0, $sy - 1, $colour_w, $fontfile, "A", array());
29 if (imagecolorat($im, $x, $y) == $colour_b) {
35 // imagecolordeallocate($im, $colour_w);
36 // imagecolordeallocate($im, $colour_b);
41 $im = imagecreate(256, 256);
42 var_dump(testrun($im, $fontfile_8859));
43 imagedestroy($im);
45 $im = imagecreatetruecolor(256, 256);
46 var_dump(testrun($im, $fontfile_8859));
47 imagedestroy($im);