Home
last modified time | relevance | path

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

1234567

/PHP-7.3/ext/gd/tests/
H A Dbug77198_auto.phpt13 $im = imagecreatetruecolor(8, 8);
14 imagefilledrectangle($im, 0, 0, 7, 7, 0xffffff);
15 imagesetpixel($im, $x, $y, 0x000000);
16 return $im;
H A Dbug72696.phpt9 $im = imagecreatetruecolor(10, 10);
10 imagefilltoborder($im, 0, 0, 1, -2);
H A Dbug39082.phpt11 $im = imagecreatetruecolor(1,1);
12 imagegif($im);
H A Dbug72337.phpt9 $im = imagecreatetruecolor(1, 1);
10 imagescale($im, 0, 0, IMG_BICUBIC_FIXED);
H A Dimagecolorstotal_basic.phpt24 $im = imagecreatefromgif($gif);
26 echo 'Total colors in image: ' . imagecolorstotal($im);
29 imagedestroy($im);
H A Dbug73968.phpt9 $im = imagecreatefromxbm(__DIR__ . DIRECTORY_SEPARATOR . 'bug73968.xbm');
10 var_dump($im);
H A Dimagecolorallocate_error.phpt11 /* Prototype : int imagecolorallocate(resource im, int red, int green, int blue)
20 $im = imagecreate(200, 200);
26 var_dump( imagecolorallocate($im, $red, $green, $blue, $extra_arg) );
31 var_dump( imagecolorallocate($im, $red, $green) );
H A Dbug72494.phpt9 $im = imagecreate(10,10);
10 imagecropauto($im, IMG_CROP_THRESHOLD, 0, 1337);
H A Dbug66590_1.phpt10 $im = imagecreatetruecolor(6, 6);
12 imagewebp($im);
H A Dbug73159.phpt9 $im = imagecreatetruecolor(10, 10);
12 imagegd2($im, null, 128, 0);
H A Dbug37360.phpt9 $im = imagecreatefromgif(dirname(__FILE__) . '/bug37360.gif');
10 var_dump($im);
H A Dimagecolorstotal_error.phpt22 $im = fopen(__FILE__, 'r');
29 var_dump( imagecolorstotal($im, $extra_arg) );
32 var_dump( imagecolorstotal($im) );
34 fclose($im);
H A Dimagecreatefrombmp_basic.phpt11 $im = imagecreatefrombmp(__DIR__ . '/imagecreatefrombmp_basic.bmp');
14 test_image_equals_file(__DIR__ . '/imagecreatefrombmp_basic.png', $im);
H A Dbug73549.phpt10 $im = imagecreatetruecolor(8, 8);
11 var_dump(imagepng($im, $stream));
H A Dimagepalettetotruecolor_error3.phpt11 $im = fopen('php://memory', 'w');
12 imagepalettetotruecolor($im);
H A Dlibgd00094-mb.phpt10 $im = imagecreatefromxbm(dirname(__FILE__) . '/libgd00094私はガラスを食べられます.xbm');
11 var_dump($im);
H A Dlibgd00094.phpt10 $im = imagecreatefromxbm(dirname(__FILE__) . '/libgd00094.xbm');
11 var_dump($im);
H A Dbug72339.phpt26 $im = imagecreatefromgd2($fname);
28 if ($im) {
29 imagedestroy($im);
H A Dbug73161.phpt11 $im = imagecreatefromgd2(__DIR__ . DIRECTORY_SEPARATOR . 'bug73161.gd2');
12 var_dump($im);
H A Dlibgd00086_extern.phpt11 $im = imagecreatefrompng(dirname(__FILE__) . '/libgd00086.png');
12 var_dump($im);
H A Dbug77973.phpt13 $im = imagecreatefromxbm($filepath);
14 var_dump($im);
H A Dlibgd00101.phpt10 $im = imagecreatefromgd(dirname(__FILE__) . '/libgd00101.gd');
11 var_dump($im);
H A Dbug39780_extern.phpt11 $im = imagecreatefrompng(dirname(__FILE__) . '/bug39780.png');
12 var_dump($im);
/PHP-7.3/ext/standard/tests/image/
H A Dbug70096.phpt11 $im = imagecreatetruecolor(10, 10);
12 imagejpeg($im, $filename);
13 imagedestroy($im);
/PHP-7.3/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()

Completed in 47 milliseconds

1234567