Lines Matching refs:img
14 global $img, $black, $red;
16 echo (imagecolorat($img, $x, $y) === $black) ? '+' : '-';
17 imagesetpixel($img, $x, $y, $red);
22 global $img, $black;
25 imagerectangle($img, $x1, $y1, $x2, $y2, $black);
35 $img = imagecreate(110, 210);
36 $bgnd = imagecolorallocate($img, 255, 255, 255);
37 $black = imagecolorallocate($img, 0, 0, 0);
38 $red = imagecolorallocate($img, 255, 0, 0);
44 imagesetthickness($img, 4);
50 //imagepng($img, __DIR__ . '/bug53156.png'); // debug