Home
last modified time | relevance | path

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

1234567

/PHP-7.3/ext/gd/tests/
H A Dlibgd00086.phpt11 $im = imagecreatefrompng(dirname(__FILE__) . '/libgd00086.png');
12 var_dump($im);
H A Dbug39780.phpt11 $im = imagecreatefrompng(dirname(__FILE__) . '/bug39780.png');
12 var_dump($im);
H A Dbug37346-mb.phpt9 $im = imagecreatefromgif(dirname(__FILE__) . '/bug37346私はガラスを食べられます.gif');
H A Dbug37346.phpt9 $im = imagecreatefromgif(dirname(__FILE__) . '/bug37346.gif');
H A Dbug38112.phpt11 $im = imagecreatefromgif(dirname(__FILE__) . '/bug38112.gif');
H A Dimagecreatefromstring_bmp.phpt20 $im = imagecreatefromstring($bmp);
23 test_image_equals_file(__DIR__ . '/imagecreatefromstring_bmp.png', $im);
H A Dbug38212-mb.phpt13 $im = imagecreatefromgd2part($file, 0,0, -25,10);
H A Dbug38212.phpt13 $im = imagecreatefromgd2part($file, 0,0, -25,10);
H A Dimagecolorallocate_variation2.phpt15 /* Prototype : int imagecolorallocate(resource im, int red, int green, int blue)
22 $im = imagecreatetruecolor(200, 200);
105 var_dump( imagecolorallocate($im, $value, $green, $blue) );
H A Dimagecolorallocate_variation3.phpt14 /* Prototype : imagecolorallocate(resource im, int red, int green, int blue)
21 $im = imagecreatetruecolor(200, 200);
104 var_dump( imagecolorallocate($im, $red, $value, $blue) );
H A Dimagecolorallocate_variation4.phpt15 /* Prototype : int imagecolorallocate(resource im, int red, int green, int blue)
21 $im = imagecreatetruecolor(200, 200);
104 var_dump( imagecolorallocate($im, $red, $green, $value) );
H A Dimagecolourstotal_basic.phpt16 /* Prototype : int imagecolorstotal(resource im)
H A Dcreatefromwbmp2_extern.phpt41 $im = imagecreatefromwbmp($filename);
H A Dcreatefromwbmp2.phpt41 $im = imagecreatefromwbmp($filename);
H A Dimagecolorallocate_variation6.phpt14 /* Prototype : int imagecolorallocate(resource im, int red, int green, int blue)
H A Dimagecolorallocate_variation1.phpt11 /* Prototype : int imagecolorallocate(resource im, int red, int green, int blue)
108 // loop through each element of the array for im
/PHP-7.3/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;
/PHP-7.3/ext/gd/libgd/
H A Dgd_filter.c427 int gdImageGaussianBlur(gdImagePtr im) in gdImageGaussianBlur() argument
433 return gdImageConvolution(im, filter, 16, 0); in gdImageGaussianBlur()
436 int gdImageEmboss(gdImagePtr im) in gdImageEmboss() argument
447 return gdImageConvolution(im, filter, 1, 127); in gdImageEmboss()
450 int gdImageMeanRemoval(gdImagePtr im) in gdImageMeanRemoval() argument
456 return gdImageConvolution(im, filter, 1, 0); in gdImageMeanRemoval()
459 int gdImageSmooth(gdImagePtr im, float weight) in gdImageSmooth() argument
467 return gdImageConvolution(im, filter, weight+8, 0); in gdImageSmooth()
H A Dgd_topal.c1570 for (i = 0; (i < im->colorsTotal); i++) in gdImageTrueColorToPaletteBody()
1572 if (im->alpha[i] > mt) in gdImageTrueColorToPaletteBody()
1575 mt = im->alpha[i]; in gdImageTrueColorToPaletteBody()
1578 for (i = 0; (i < im->colorsTotal); i++) in gdImageTrueColorToPaletteBody()
1580 if (im->alpha[i] == mt) in gdImageTrueColorToPaletteBody()
1582 im->alpha[i] = gdAlphaTransparent; in gdImageTrueColorToPaletteBody()
1590 for (i = 0; (i < im->colorsTotal); i++) in gdImageTrueColorToPaletteBody()
1592 if (im->alpha[i] < mo) in gdImageTrueColorToPaletteBody()
1595 mo = im->alpha[i]; in gdImageTrueColorToPaletteBody()
1600 if (im->alpha[i] == mo) in gdImageTrueColorToPaletteBody()
[all …]
/PHP-7.3/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);

Completed in 40 milliseconds

1234567