Home
last modified time | relevance | path

Searched refs:im (Results 126 – 150 of 158) sorted by relevance

1234567

/PHP-8.2/ext/gd/tests/
H A Dbug37360.phpt7 $im = imagecreatefromgif(__DIR__ . '/bug37360.gif');
8 var_dump($im);
H A Dbug66590_1.phpt11 $im = imagecreatetruecolor(6, 6);
13 imagewebp($im);
H A Dbug72494.phpt9 $im = imagecreate(10,10);
12 fn() => imagecropauto($im, IMG_CROP_THRESHOLD, 0, 1337)
H A Dbug73549.phpt8 $im = imagecreatetruecolor(8, 8);
9 var_dump(imagepng($im, $stream));
H A Dimagecreatefrombmp_basic.phpt12 $im = imagecreatefrombmp(__DIR__ . '/imagecreatefrombmp_basic.bmp');
15 test_image_equals_file(__DIR__ . '/imagecreatefrombmp_basic.png', $im);
H A Dimagecreatefromtga_basic.phpt12 $im = imagecreatefromtga(__DIR__ . '/imagecreatefromtga_basic.tga');
15 test_image_equals_file(__DIR__ . '/imagecreatefromtga.png', $im);
H A Dimagecreatefromtga_variation.phpt12 $im = imagecreatefromtga(__DIR__ . '/imagecreatefromtga_variation.tga');
15 test_image_equals_file(__DIR__ . '/imagecreatefromtga.png', $im);
H A Dbug73159.phpt13 $im = imagecreatetruecolor(10, 10);
16 imagegd2($im, null, 128, 0);
H A Dlibgd00094.phpt11 $im = imagecreatefromxbm(__DIR__ . '/libgd00094.xbm');
12 var_dump($im);
H A Dlibgd00094-mb.phpt11 $im = imagecreatefromxbm(__DIR__ . '/libgd00094私はガラスを食べられます.xbm');
12 var_dump($im);
H A Dimagecolorallocate_variation5.phpt17 $im = imagecreatetruecolor(200, 200);
41 fn() => imagecolorallocate($im, $value, $green, $blue),
42 fn() => imagecolorallocate($im, $red, $value, $blue),
43 fn() => imagecolorallocate($im, $red, $green, $value)
H A Dbug77973.phpt14 $im = imagecreatefromxbm($filepath);
15 var_dump($im);
H A Dbug73161.phpt15 $im = imagecreatefromgd2(__DIR__ . DIRECTORY_SEPARATOR . 'bug73161.gd2');
16 var_dump($im);
H A Dbug72339.phpt34 $im = imagecreatefromgd2($fname);
36 if ($im) {
37 imagedestroy($im);
H A Dlibgd00101.phpt11 $im = imagecreatefromgd(__DIR__ . '/libgd00101.gd');
12 var_dump($im);
H A Dlibgd00086.phpt12 $im = imagecreatefrompng(__DIR__ . '/libgd00086.png');
13 var_dump($im);
H A Dlibgd00086_extern.phpt12 $im = imagecreatefrompng(__DIR__ . '/libgd00086.png');
13 var_dump($im);
H A Dbug39780.phpt12 $im = imagecreatefrompng(__DIR__ . '/bug39780.png');
13 var_dump($im);
H A Dbug39780_extern.phpt12 $im = imagecreatefrompng(__DIR__ . '/bug39780.png');
13 var_dump($im);
H A Dbug37346.phpt7 $im = imagecreatefromgif(__DIR__ . '/bug37346.gif');
H A Dbug37346-mb.phpt7 $im = imagecreatefromgif(__DIR__ . '/bug37346私はガラスを食べられます.gif');
H A Dbug38112.phpt7 $im = imagecreatefromgif(__DIR__ . '/bug38112.gif');
/PHP-8.2/Zend/tests/readonly_props/
H A Dvariation_nested.phpt33 function im($test) {
48 foreach (['r', 'w', 'rw', 'im', 'is', 'us'] as $op) {
69 Init: 1, op: im: done
75 Init: 0, op: im: Cannot indirectly modify readonly property Test::$prop
/PHP-8.2/ext/gd/libgd/
H A Dgdxpm.c24 gdImagePtr im = 0; in gdImageCreateFromXpm() local
41 if (!(im = gdImageCreate(image.width, image.height))) { in gdImageCreateFromXpm()
122 colors[i] = gdImageColorResolve(im, red, green, blue); in gdImageCreateFromXpm()
129 gdImageSetPixel(im, j, i, colors[k]); in gdImageCreateFromXpm()
137 return im; in gdImageCreateFromXpm()
/PHP-8.2/Zend/
H A Dbench.php51 $s=0; $rec=0; $imc=0; $re=0; $im=0; $re2=0; $im2=0;
61 $im=$imc;
64 $im2=$im*$im;
66 $im=$re*$im*2+$imc;
69 $im2=$im*$im;

Completed in 23 milliseconds

1234567