Lines Matching refs:im
16 $im = imagecreatetruecolor(99, 99);
17 imagefilledrectangle($im, 20, 20, 30, 30, 0xff);
18 $im_crop = imagecropauto($im, IMG_CROP_DEFAULT);
23 $im = imagecreate(99, 99);
24 imagefilledrectangle($im, 20, 20, 30, 30, 0xff);
25 $im_crop = imagecropauto($im, IMG_CROP_DEFAULT);
30 $im = imagecreatetruecolor(99, 99);
31 imagefilledrectangle($im, 20, 20, 30, 30, 0xff);
32 $im_crop = imagecropauto($im, IMG_CROP_SIDES);
37 $im = imagecreate(99, 99);
38 imagefilledrectangle($im, 20, 20, 30, 30, 0xff);
39 $im_crop = imagecropauto($im, IMG_CROP_SIDES);
44 $im = imagecreatetruecolor(50, 50);
45 imagefilledrectangle($im, 20, 20, 30, 30, 0xff);
46 $im_crop = imagecropauto($im, IMG_CROP_BLACK);
51 $im = imagecreate(50, 50);
52 $bgd = imagecolorallocate($im, 0, 0, 0);
53 $b = imagecolorallocate($im, 0, 0, 255);
54 imagefilledrectangle($im, 20, 20, 30, 30, 0xff);
55 $im_crop = imagecropauto($im, IMG_CROP_BLACK);
60 $im = imagecreatefrompng(__DIR__ . "/logo_noise.png");
61 $im_crop = imagecropauto($im, IMG_CROP_THRESHOLD, 0.1, 0x0);