Lines Matching refs:im
17 function testrun($im, $fontfile) {
18 $sx = imagesx($im);
19 $sy = imagesy($im);
21 $colour_w = imagecolorallocate($im, 255, 255, 255);
22 $colour_b = imagecolorallocate($im, 0, 0, 0);
24 imagefilledrectangle($im, 0, 0, $sx - 1, $sy - 1, $colour_b);
25 imagefttext($im, $sy * 0.75, 0, 0, $sy - 1, $colour_w, $fontfile, "A", array());
30 if (imagecolorat($im, $x, $y) == $colour_b) {
36 // imagecolordeallocate($im, $colour_w);
37 // imagecolordeallocate($im, $colour_b);
42 $im = imagecreate(256, 256);
43 var_dump(testrun($im, $fontfile_8859));
44 imagedestroy($im);
46 $im = imagecreatetruecolor(256, 256);
47 var_dump(testrun($im, $fontfile_8859));
48 imagedestroy($im);