Lines Matching refs:im
9 $im = imagecreate(1200, 800);
10 $background_color = imagecolorallocate($im, 40, 40, 40);
11 $color = imagecolorallocate($im, 255, 255, 255);
12 imagedashedline($im, 800, 400, 300, 400, $color);
13 imagedashedline($im, 800, 400, 300, 800, $color);
14 imagedashedline($im, 800, 400, 400, 800, $color);
15 imagedashedline($im, 800, 400, 500, 800, $color);
16 imagedashedline($im, 800, 400, 600, 800, $color);
17 imagedashedline($im, 800, 400, 700, 800, $color);
18 imagedashedline($im, 800, 400, 800, 800, $color);
20 test_image_equals_file(__DIR__ . '/bug52070.png', $im);