Lines Matching refs:orig
12 $orig = imagecreatetruecolor(8, 8);
13 $red = imagecolorallocate($orig, 255, 0, 0);
14 $green = imagecolorallocate($orig, 0, 255, 0);
15 $blue = imagecolorallocate($orig, 0, 0, 255);
17 imagefilledrectangle($orig, 0, 0, 3, 3, $green); // tl
18 imagefilledrectangle($orig, 4, 0, 7, 3, $red); // tr
19 imagefilledrectangle($orig, 0, 4, 3, 7, $green); // bl
20 imagefilledrectangle($orig, 4, 4, 7, 7, $blue); // br
22 $cropped = imagecropauto($orig, IMG_CROP_SIDES);
25 imagefilledrectangle($orig, 0, 0, 3, 3, $red); // tl
26 imagefilledrectangle($orig, 4, 0, 7, 3, $green); // tr
27 imagefilledrectangle($orig, 0, 4, 3, 7, $blue); // bl
28 imagefilledrectangle($orig, 4, 4, 7, 7, $green); // br
30 $cropped = imagecropauto($orig, IMG_CROP_SIDES);