/PHP-5.4/ext/gd/tests/ |
H A D | bug24594.phpt | 14 $black = imagecolorallocate($tile,0,0,0); 16 $black = imagecolorallocate($base,0,0,0); 21 imagesetpixel($tile,$x,$y,$black); 26 imagerectangle($base, 9,9,139,139,$black); 27 imageline($base, 9,9,139,139,$black); 30 $res = imagecolorat($base,0,10)==$black?'1':'0'; 31 $res .= imagecolorat($base,0,20)==$black?'1':'0'; 32 $res .= imagecolorat($base,0,30)==$black?'1':'0'; 33 $res .= imagecolorat($base,0,40)==$black?'1':'0'; 53 imagerectangle($base, 9,9,139,139,$black); [all …]
|
H A D | bug40764.phpt | 11 $black = imagecolorallocate($image, 0, 0, 0); 17 imageline($image, 200, 0, 200, 400, $black); 18 imageline($image, 0, 200, 400, 200, $black); 19 imageline($image, 0, 0, 392, 392, $black);
|
H A D | imagepolygon_negative.phpt | 10 $black = imagecolorallocate($im, 0, 0, 0); 11 if (imagepolygon($im, array(0, 0, 0, 0, 0, 0), -1, $black)) echo "should be false";
|
H A D | imagefilledpolygon_negative.phpt | 10 $black = imagecolorallocate($im, 0, 0, 0); 11 if (imagefilledpolygon($im, array(0, 0, 0, 0, 0, 0), -1, $black)) echo "should be false";
|
H A D | bug48732.phpt | 14 $black = imagecolorallocate($g, 0, 0, 0); 15 $bbox = imagettftext($g, 12, 0, 0, 20, $black, $font, "ABCEDFGHIJKLMN\nopqrstu\n");
|
H A D | imagesetthickness_basic.phpt | 15 $black = imagecolorallocate($image, 0x00, 0x00, 0x00); 24 imagerectangle($image, 14, 14, 185, 85, $black);
|
H A D | imageloadfont_invalid.phpt | 18 $black = imagecolorallocate($image, 0, 0, 0); 19 imagestring($image, $font, 0, 0, "Hello", $black);
|
H A D | bug43073.phpt | 18 $black = imagecolorallocate($g, 0, 0, 0); 24 $bbox = imagettftext($g, 24, $angle, 400+$x, 400+$y, $black, $font, 'ABCDEF');
|
H A D | bug43073_1.phpt | 18 $black = imagecolorallocate($g, 0, 0, 0); 24 $bbox = imagettftext($g, 24, $angle, 400+$x, 400+$y, $black, $font, 'ABCDEF');
|
H A D | bug43121.phpt | 10 $black = ImageColorAllocate( $im, 0, 0, 0 );
|
H A D | imagefilltoborder_basic.phpt | 18 // Draw an ellipse to fill with a black border
|
H A D | imagefilltoborder_error7.phpt | 18 // Draw an ellipse to fill with a black border
|
H A D | libgd00100.phpt | 13 $black = imagecolorallocatealpha($im, 0, 0, 0, 10); 107 imagefilledpolygon($im, $points, 5, $black);
|
H A D | imagefilltoborder_error1.phpt | 18 // Draw an ellipse to fill with a black border
|
H A D | imagefilltoborder_error4.phpt | 18 // Draw an ellipse to fill with a black border
|
H A D | imagefilltoborder_error5.phpt | 18 // Draw an ellipse to fill with a black border
|
H A D | imagefilltoborder_error2.phpt | 18 // Draw an ellipse to fill with a black border
|
H A D | imagefilltoborder_error3.phpt | 18 // Draw an ellipse to fill with a black border
|
H A D | imagefilltoborder_error6.phpt | 18 // Draw an ellipse to fill with a black border
|
H A D | imagepolygon_basic.phpt | 25 // set the background color to black
|
H A D | imagedashedline_basic.phpt | 26 // set the background color to black
|
/PHP-5.4/ext/gd/libgd/ |
H A D | gd_wbmp.c | 132 int black, white; in gdImageCreateFromWBMPCtx() local 147 black = gdImageColorAllocate(im, 0, 0, 0); in gdImageCreateFromWBMPCtx() 156 gdImageSetPixel(im, col, row, black); in gdImageCreateFromWBMPCtx()
|
H A D | gdtestft.c | 32 int black; in main() 81 black = gdImageColorResolve (im, 0, 0, 0); in main() 87 err = gdImageStringFT (im, NULL, black, f, sz, angle, x, y, s); in main()
|
H A D | gd_arc_f_buggy.c | 705 int white = gdImageColorResolve (im, 0xFF, 0xFF, 0xFF), black = gdImageColorResolve (im, 0, 0, 0), 711 gdImageArc (im, WIDTH / 5, HEIGHT / 4, 200, 200, 45, 90, black); 715 gdImageArc (im, WIDTH / 2, HEIGHT / 4, 200, 150, 45, 90, black); 719 gdImageLine (im, 0, HEIGHT / 4, WIDTH, HEIGHT / 4, black); 720 gdImageLine (im, WIDTH / 5, 0, WIDTH / 5, HEIGHT, black); 721 gdImageLine (im, WIDTH / 2, 0, WIDTH / 2, HEIGHT, black); 722 gdImageLine (im, WIDTH / 2, HEIGHT / 4, WIDTH / 2 + 300, HEIGHT / 4 + 300, black); 723 gdImageLine (im, WIDTH / 5, HEIGHT / 4, WIDTH / 5 + 300, HEIGHT / 4 + 300, black);
|
/PHP-5.4/ext/standard/tests/array/ |
H A D | array_splice_basic.phpt | 30 var_dump (array_splice($input, -1, 1, array("black", "maroon"))); 33 // "blue", "black", "maroon") 99 string(5) "black"
|