Home
last modified time | relevance | path

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

/PHP-7.0/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_error5.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_error6.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
/PHP-7.0/ext/gd/libgd/
H A Dgd_interpolation.c665 register int border = 0; in getPixelOverflowTC() local
668 border = im->tpixels[0][im->cx1]; in getPixelOverflowTC()
673 border = im->tpixels[0][im->cx1]; in getPixelOverflowTC()
688 border = im->tpixels[y][im->cx1]; in getPixelOverflowTC()
697 if (border == im->transparent) { in getPixelOverflowTC()
700 …return gdTrueColorAlpha(gdTrueColorGetRed(border), gdTrueColorGetGreen(border), gdTrueColorGetBlue… in getPixelOverflowTC()
716 register int border = 0; in getPixelOverflowPalette() local
747 if (border == im->transparent) { in getPixelOverflowPalette()
1219 register int border = 0; in getPixelOverflowColorTC() local
1250 if (border == im->transparent) { in getPixelOverflowColorTC()
[all …]
H A Dgd.c1741 void gdImageFillToBorder (gdImagePtr im, int x, int y, int border, int color) in gdImageFillToBorder() argument
1748 if (border < 0 || color < 0) { in gdImageFillToBorder()
1754 if ((color > (im->colorsTotal - 1)) || (border > (im->colorsTotal - 1)) || (color < 0)) { in gdImageFillToBorder()
1774 if (gdImageGetPixel(im, i, y) == border) { in gdImageFillToBorder()
1787 if (gdImageGetPixel(im, i, y) == border) { in gdImageFillToBorder()
1800 if ((c != border) && (c != color)) { in gdImageFillToBorder()
1801 gdImageFillToBorder(im, i, y - 1, border, color); in gdImageFillToBorder()
1804 } else if ((c == border) || (c == color)) { in gdImageFillToBorder()
1817 if ((c != border) && (c != color)) { in gdImageFillToBorder()
1818 gdImageFillToBorder(im, i, y + 1, border, color); in gdImageFillToBorder()
[all …]
H A Dgd.h669 void gdImageFillToBorder(gdImagePtr im, int x, int y, int border, int color);
/PHP-7.0/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.0/ext/gd/
H A Dgd.c552 ZEND_ARG_INFO(0, border)
3252 zend_long x, y, border, col; in PHP_FUNCTION() local
3255 if (zend_parse_parameters(ZEND_NUM_ARGS(), "rllll", &IM, &x, &y, &border, &col) == FAILURE) { in PHP_FUNCTION()
3263 gdImageFillToBorder(im, x, y, border, col); in PHP_FUNCTION()

Completed in 54 milliseconds