Lines Matching refs:im
11 $im = imagecreatetruecolor(99, 99);
12 imagefilledrectangle($im, 20, 20, 30, 30, 0xff);
13 $im_crop = imagecropauto($im, IMG_CROP_DEFAULT);
18 $im = imagecreate(99, 99);
19 imagefilledrectangle($im, 20, 20, 30, 30, 0xff);
20 $im_crop = imagecropauto($im, IMG_CROP_DEFAULT);
25 $im = imagecreatetruecolor(99, 99);
26 imagefilledrectangle($im, 20, 20, 30, 30, 0xff);
27 $im_crop = imagecropauto($im, IMG_CROP_SIDES);
32 $im = imagecreate(99, 99);
33 imagefilledrectangle($im, 20, 20, 30, 30, 0xff);
34 $im_crop = imagecropauto($im, IMG_CROP_SIDES);
39 $im = imagecreatetruecolor(50, 50);
40 imagefilledrectangle($im, 20, 20, 30, 30, 0xff);
41 $im_crop = imagecropauto($im, IMG_CROP_BLACK);
46 $im = imagecreate(50, 50);
47 $bgd = imagecolorallocate($im, 0, 0, 0);
48 $b = imagecolorallocate($im, 0, 0, 255);
49 imagefilledrectangle($im, 20, 20, 30, 30, 0xff);
50 $im_crop = imagecropauto($im, IMG_CROP_BLACK);
55 $im = imagecreatefrompng(__DIR__ . "/logo_noise.png");
56 $im_crop = imagecropauto($im, IMG_CROP_THRESHOLD, 0.1, 0x0);