Home
last modified time | relevance | path

Searched refs:border (Results 1 – 16 of 16) sorted by relevance

/PHP-7.2/ext/gd/tests/
H A Dgithub_bug_215.phpt14 $border = imagecolorallocate( $image, 255, 0, 0 );
18 imagefilltoborder( $image, 0,0, $border+10, $fillcolor);
22 imagefilltoborder( $image, 0,0, -$border, $fillcolor);
27 imagefilltoborder( $image, 0,0, $border, $fillcolor+10);
31 imagefilltoborder( $image, 0,0, $border, -$fillcolor);
36 imagefilltoborder( $image, 0,0, $border+10, $fillcolor+10);
H A Dimagefilltoborder_basic.phpt18 // Draw an ellipse to fill with a black border
21 // Fill border
H A Dimagefilltoborder_error7.phpt18 // Draw an ellipse to fill with a black border
21 // Try to fill border
H A Dimagefilltoborder_error1.phpt18 // Draw an ellipse to fill with a black border
21 // Try to fill border
H A Dimagefilltoborder_error4.phpt18 // Draw an ellipse to fill with a black border
21 // Try to fill border
H A Dimagefilltoborder_error5.phpt18 // Draw an ellipse to fill with a black border
21 // Try to fill border
H A Dimagefilltoborder_error2.phpt18 // Draw an ellipse to fill with a black border
21 // Try to fill border
H A Dimagefilltoborder_error3.phpt18 // Draw an ellipse to fill with a black border
21 // Try to fill border
H A Dimagefilltoborder_error6.phpt18 // Draw an ellipse to fill with a black border
21 // Try to fill border
H A Dbug73281.phpt2 Bug #73281 (imagescale(…, IMG_BILINEAR_FIXED) can cause black border)
/PHP-7.2/ext/exif/
H A Dtest.txt233 <table border='1' cellspacing='0' cellpadding='3' summary="EXIF headernames">
257 echo "<table border='1' cellspacing='0' cellpadding='3' summary='function results'>\n";
258 $tab2 = "";//"<table border='1' cellspacing='0' cellpadding='3' summary='EXIF information'>\n";
/PHP-7.2/ext/gd/libgd/
H A Dgd_interpolation.c1139 register int border = 0; in getPixelOverflowColorTC() local
1141 border = im->tpixels[0][im->cx1]; in getPixelOverflowColorTC()
1146 border = im->tpixels[0][im->cx1]; in getPixelOverflowColorTC()
1152 border = im->tpixels[im->cy2][x]; in getPixelOverflowColorTC()
1161 border = im->tpixels[y][im->cx1]; in getPixelOverflowColorTC()
1166 border = im->tpixels[y][im->cx2]; in getPixelOverflowColorTC()
1170 if (border == im->transparent) { in getPixelOverflowColorTC()
1173 …return gdTrueColorAlpha(gdTrueColorGetRed(border), gdTrueColorGetGreen(border), gdTrueColorGetBlue… in getPixelOverflowColorTC()
H A Dgd.c1798 void gdImageFillToBorder (gdImagePtr im, int x, int y, int border, int color) in gdImageFillToBorder() argument
1805 if (border < 0 || color < 0) { in gdImageFillToBorder()
1811 if ((color > (im->colorsTotal - 1)) || (border > (im->colorsTotal - 1)) || (color < 0)) { in gdImageFillToBorder()
1831 if (gdImageGetPixel(im, i, y) == border) { in gdImageFillToBorder()
1844 if (gdImageGetPixel(im, i, y) == border) { in gdImageFillToBorder()
1857 if ((c != border) && (c != color)) { in gdImageFillToBorder()
1858 gdImageFillToBorder(im, i, y - 1, border, color); in gdImageFillToBorder()
1861 } else if ((c == border) || (c == color)) { in gdImageFillToBorder()
1874 if ((c != border) && (c != color)) { in gdImageFillToBorder()
1875 gdImageFillToBorder(im, i, y + 1, border, color); in gdImageFillToBorder()
[all …]
H A Dgd.h682 void gdImageFillToBorder(gdImagePtr im, int x, int y, int border, int color);
/PHP-7.2/ext/gd/
H A Dgd.c564 ZEND_ARG_INFO(0, border)
3316 zend_long x, y, border, col; in PHP_FUNCTION() local
3319 if (zend_parse_parameters(ZEND_NUM_ARGS(), "rllll", &IM, &x, &y, &border, &col) == FAILURE) { in PHP_FUNCTION()
3327 gdImageFillToBorder(im, x, y, border, col); in PHP_FUNCTION()
/PHP-7.2/
H A DNEWS582 . Fixed bug #73281 (imagescale(…, IMG_BILINEAR_FIXED) can cause black border).

Completed in 49 milliseconds