Lines Matching refs:im
12 $im = imagecreatetruecolor(5,5);
13 imagefill($im, 0,0, 0xffffff);
14 imagesetpixel($im, 3,3, 0x0);
15 imagepng($im, $dir . '/tc.png');
18 $im = imagecreatefromstring($im_string);
20 if (imagecolorat($im, 3,3) != 0x0) {
30 $im = imagecreate(5,5);
31 $c1 = imagecolorallocate($im, 255,255,255);
32 $c2 = imagecolorallocate($im, 255,0,0);
33 imagefill($im, 0,0, $c1);
34 imagesetpixel($im, 3,3, $c2);
35 imagepng($im, $dir . '/p.png');
38 $im = imagecreatefromstring($im_string);
42 $c = imagecolorsforindex($im, imagecolorat($im, 3,3));
54 $im = imagecreatefromstring('');
56 $im = imagecreatefromstring(' asdf jklp');