Home
last modified time | relevance | path

Searched refs:im (Results 1 – 25 of 110) sorted by last modified time

12345

/PHP-5.5/ext/zip/examples/
H A Dim.php3 $im = imagecreatefromgif('zip://' . dirname(__FILE__) . '/test_im.zip#pear_item.gif'); variable
4 imagepng($im, 'a.png');
9 $im = imagecreatefromstring($im_string); variable
10 imagepng($im, 'b.png');
/PHP-5.5/ext/soap/
H A DTODO.old35 im sure im forgetting 20 thousand more things....
/PHP-5.5/ext/pcre/pcrelib/doc/
H A Dpcre.txt2971 starts. For example, if the pattern /(?im)abc(?-i)d/ is compiled with
5991 For example, (?im) sets caseless, multiline matching. It is also possi-
5993 combined setting and unsetting such as (?im-sx), which sets PCRE_CASE-
/PHP-5.5/ext/oci8/tests/
H A Dlob_029.phpt73 …ge) values (2, 'Description 2', bfilename('TESTDIR', '$realfilename1')) returning Image into :im");
74 oci_bind_by_name($s, ":im", $d, -1, OCI_B_BFILE);
/PHP-5.5/ext/mbstring/
H A DREADME_PHP3-i18n-ja756 ImageTTFText($im,$size,$angle,$x1,$y1,$color,"/path/to/font.ttf",
758 ImageGif($im);
761 ImageTTFText($im,$size,$angle,$x1,$y1,$color,"/path/to/font.ttf","���ܸ�");
762 ImagePng($im);
/PHP-5.5/ext/gd/tests/
H A Dpng2wbmp_error3.phpt18 $im = imagecreatetruecolor(120, 20);
19 $text_color = imagecolorallocate($im, 255, 255, 255);
20 imagestring($im, 1, 5, 5, 'A Simple Text String', $text_color);
25 imagepng($im, $file);
28 imagedestroy($im);
H A Dpngcomp.phpt19 $im = imagecreatetruecolor(20,20);
20 imagefilledrectangle($im, 5,5, 10,10, 0xffffff);
21 imagepng($im, $cwd . '/test_pngcomp.png', 9);
H A Dimageflip.phpt10 $im = imagecreatetruecolor( 99, 99 );
12 imagesetpixel($im, 0, 0, 0xFF);
13 imagesetpixel($im, 0, 98, 0x00FF00);
14 imagesetpixel($im, 98, 0, 0xFF0000);
15 imagesetpixel($im, 98, 98, 0x0000FF);
17 imageflip($im, IMG_FLIP_HORIZONTAL);
18 imageflip($im, IMG_FLIP_VERTICAL);
19 imageflip($im, IMG_FLIP_BOTH);
21 var_dump(dechex(imagecolorat($im, 0, 0)));
22 var_dump(dechex(imagecolorat($im, 0, 98)));
[all …]
H A Dimagepalettetotruecolor_basic.phpt11 $im = imagecreate(100, 100);
12 var_dump(is_resource($im));
13 var_dump(imageistruecolor($im));
14 var_dump(imagepalettetotruecolor($im));
15 var_dump(imageistruecolor($im));
16 imagedestroy($im);
H A Dimagefttext.phpt17 function testrun($im, $fontfile) {
18 $sx = imagesx($im);
19 $sy = imagesy($im);
36 // imagecolordeallocate($im, $colour_w);
37 // imagecolordeallocate($im, $colour_b);
42 $im = imagecreate(256, 256);
43 var_dump(testrun($im, $fontfile_8859));
44 imagedestroy($im);
46 $im = imagecreatetruecolor(256, 256);
47 var_dump(testrun($im, $fontfile_8859));
[all …]
H A Dimagepalettetotruecolor_error3.phpt11 $im = fopen('php://memory', 'w');
12 imagepalettetotruecolor($im);
H A Dimagepolygon_negative.phpt9 $im = imagecreate(100, 100);
10 $black = imagecolorallocate($im, 0, 0, 0);
11 if (imagepolygon($im, array(0, 0, 0, 0, 0, 0), -1, $black)) echo "should be false";
12 imagedestroy($im);
H A Dimagewbmp.phpt9 $file = dirname(__FILE__) . '/im.wbmp';
11 $im = imagecreatetruecolor(6,6);
12 imagefill($im, 0,0, 0xffffff);
13 imagesetpixel($im, 3,3, 0x0);
14 imagewbmp($im, $file);
H A Djpeg2wbmp_error1.phpt18 $im = imagecreatetruecolor(120, 20);
19 $text_color = imagecolorallocate($im, 255, 255, 255);
20 imagestring($im, 1, 5, 5, 'A Simple Text String', $text_color);
26 imagejpeg($im, $file);
29 imagedestroy($im);
H A Djpeg2wbmp_error3.phpt18 $im = imagecreatetruecolor(120, 20);
19 $text_color = imagecolorallocate($im, 255, 255, 255);
20 imagestring($im, 1, 5, 5, 'A Simple Text String', $text_color);
25 imagejpeg($im, $file);
28 imagedestroy($im);
H A Dlibgd00086.phpt11 $im = imagecreatefrompng(dirname(__FILE__) . '/libgd00086.png');
12 var_dump($im);
H A Dlibgd00086_extern.phpt11 $im = imagecreatefrompng(dirname(__FILE__) . '/libgd00086.png');
12 var_dump($im);
H A Dlibgd00094.phpt10 $im = imagecreatefromxbm(dirname(__FILE__) . '/libgd00094.xbm');
11 var_dump($im);
H A Dlibgd00100.phpt10 $im = imagecreatetruecolor(256, 256);
36 imagefilledpolygon($im, $points, 5, $yellow);
50 imagefilledpolygon($im, $points, 5, $purple);
64 imagefilledpolygon($im, $points, 5, $magenta);
78 imagefilledpolygon($im, $points, 5, $blue);
84 imagefilledpolygon($im, $diamond, 4, $green);
89 imagefilledpolygon($im, $diamond, 4, $red);
94 imagefilledpolygon($im, $diamond, 4, $cyan);
107 imagefilledpolygon($im, $points, 5, $black);
110 imagepng($im);
[all …]
H A Dlibgd00101.phpt10 $im = imagecreatefromgd(dirname(__FILE__) . '/libgd00101.gd');
11 var_dump($im);
H A Dlines.phpt9 $im = imagecreatetruecolor(6,6);
10 imagefill($im, 0,0, 0xffffff);
13 imageline($im, 0,0, 5,5);
17 imageline($im, 0,5, 5,5, 0x00ff00);
29 $im = imagecreatetruecolor(6,6);
30 imagefill($im, 0,0, 0xffffff);
45 $im = imagecreatetruecolor(6,6);
46 imagefill($im, 0,0, 0xffffff);
67 imagefill($im, 0,0, 0xffffff);
80 imagefill($im, 0,0, 0xffffff);
[all …]
H A Dpng2wbmp_error1.phpt18 $im = imagecreatetruecolor(120, 20);
19 $text_color = imagecolorallocate($im, 255, 255, 255);
20 imagestring($im, 1, 5, 5, 'A Simple Text String', $text_color);
26 imagepng($im, $file);
29 imagedestroy($im);
H A Dimagecolorallocate_variation4.phpt14 /* Prototype : int imagecolorallocate(resource im, int red, int green, int blue)
20 $im = imagecreatetruecolor(200, 200);
103 var_dump( imagecolorallocate($im, $red, $green, $value) );
H A Dimagecolorallocate_variation5.phpt14 /* Prototype : int imagecolorallocate(resource im, int red, int green, int blue)
20 $im = imagecreatetruecolor(200, 200);
42 var_dump( imagecolorallocate($im, $value, $green, $blue) );
43 var_dump( imagecolorallocate($im, $red, $value, $blue) );
44 var_dump( imagecolorallocate($im, $red, $green, $value) );
H A Dimagecolorallocate_variation6.phpt14 /* Prototype : int imagecolorallocate(resource im, int red, int green, int blue)

Completed in 78 milliseconds

12345