Home
last modified time | relevance | path

Searched refs:black (Results 1 – 25 of 29) sorted by relevance

12

/PHP-5.5/ext/gd/tests/
H A Dbug24594.phpt14 $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 Dbug40764.phpt11 $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 Dimagefilledpolygon_negative.phpt10 $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 Dimagepolygon_negative.phpt10 $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 Dbug48732.phpt14 $black = imagecolorallocate($g, 0, 0, 0);
15 $bbox = imagettftext($g, 12, 0, 0, 20, $black, $font, "ABCEDFGHIJKLMN\nopqrstu\n");
H A Dimagesetthickness_basic.phpt15 $black = imagecolorallocate($image, 0x00, 0x00, 0x00);
24 imagerectangle($image, 14, 14, 185, 85, $black);
H A Dimageloadfont_invalid.phpt17 $black = imagecolorallocate($image, 0, 0, 0);
18 imagestring($image, $font, 0, 0, "Hello", $black);
H A Dbug43073_1.phpt18 $black = imagecolorallocate($g, 0, 0, 0);
24 $bbox = imagettftext($g, 24, $angle, 400+$x, 400+$y, $black, $font, 'ABCDEF');
H A Dbug43073.phpt18 $black = imagecolorallocate($g, 0, 0, 0);
24 $bbox = imagettftext($g, 24, $angle, 400+$x, 400+$y, $black, $font, 'ABCDEF');
H A Dbug43121.phpt10 $black = ImageColorAllocate( $im, 0, 0, 0 );
H A Dimagefilltoborder_basic.phpt18 // Draw an ellipse to fill with a black border
H A Dimagefilltoborder_error7.phpt18 // Draw an ellipse to fill with a black border
H A Dimagefilltoborder_error1.phpt18 // Draw an ellipse to fill with a black border
H A Dimagefilltoborder_error4.phpt18 // Draw an ellipse to fill with a black border
H A Dimagefilltoborder_error5.phpt18 // Draw an ellipse to fill with a black border
H A Dlibgd00100.phpt13 $black = imagecolorallocatealpha($im, 0, 0, 0, 10);
107 imagefilledpolygon($im, $points, 5, $black);
H A Dimagefilltoborder_error2.phpt18 // Draw an ellipse to fill with a black border
H A Dimagefilltoborder_error3.phpt18 // Draw an ellipse to fill with a black border
H A Dimagefilltoborder_error6.phpt18 // Draw an ellipse to fill with a black border
H A Dimagepolygon_basic.phpt25 // set the background color to black
H A Dimagedashedline_basic.phpt26 // set the background color to black
/PHP-5.5/ext/gd/libgd/
H A Dgd_wbmp.c132 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 Dgdtestft.c32 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 Dgd_arc_f_buggy.c705 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.5/ext/standard/tests/array/
H A Darray_splice_basic.phpt30 var_dump (array_splice($input, -1, 1, array("black", "maroon")));
33 // "blue", "black", "maroon")
99 string(5) "black"

Completed in 25 milliseconds

12