Searched refs:gdImageRed (Results 1 – 10 of 10) sorted by relevance
/PHP-7.0/ext/gd/libgd/ |
H A D | gd_rotate.c | 34 clrBackR = gdImageRed(src, clrBack); in gdImageSkewX() 53 r = (int)(gdImageRed(src,pxlSrc) * dWeight); in gdImageSkewX() 64 r = gdImageRed(src,pxlSrc) - (gdImageRed(src,pxlLeft) - gdImageRed(src,pxlOldLeft)); in gdImageSkewX() 133 r = (int)((double)gdImageRed(src,clrBack) * dWeight); in gdImageSkewY() 144 r = (int)((double)gdImageRed(src,pxlSrc) * dWeight); in gdImageSkewY() 155 r = gdImageRed(src,pxlSrc) - (gdImageRed(src,pxlLeft) - gdImageRed(src,pxlOldLeft)); in gdImageSkewY() 232 r = gdImageRed(src,c); in gdImageRotate90() 279 r = gdImageRed(src,c); in gdImageRotate180() 327 r = gdImageRed(src,c); in gdImageRotate270()
|
H A D | gd_filter.c | 33 r = gdImageRed(src, pxl); in gdImageNegate() 70 r = gdImageRed(src, pxl); in gdImageGrayScale() 110 r = gdImageRed(src, pxl); in gdImageBrightness() 156 r = gdImageRed(src, pxl); in gdImageContrast() 212 r = gdImageRed(src, pxl); in gdImageColor() 273 new_r += (float)gdImageRed(srcback, pxl) * filter[j][i]; in gdImageConvolution() 338 new_r = ((float)gdImageRed(srcback, cpxl)) - ((float)gdImageRed (srcback, pxl)); in gdImageSelectiveBlur() 397 new_r += (float)gdImageRed(srcback, pxl) * flt_r[j][i]; in gdImageSelectiveBlur()
|
H A D | gd_crop.c | 339 …r = (int)(0.5f + (gdImageRed(im, tl) + gdImageRed(im, tr) + gdImageRed(im, bl) + gdImageRed(im, br… in gdGuessBackgroundColorFromCorners() 350 const int dr = gdImageRed(im, col1) - gdImageRed(im, col2); in gdColorMatch()
|
H A D | gd_pixelate.c | 39 r += gdImageRed(im, c); in gdImagePixelate()
|
H A D | webpng.c | 149 gdImageRed (im, j), in main()
|
H A D | gd.c | 926 …tileColor = gdTrueColorAlpha( gdImageRed(im->tile,p), gdImageGreen(im->tile,p), gdImageBlue (im->t… in gdImageTileGet() 933 …tileColor = gdImageColorResolveAlpha(im, gdImageRed (im->tile,p), gdImageGreen (im->tile,p), gdIma… in gdImageTileGet() 1023 color_red = gdImageRed(im, color); in gdImageAABlend() 1041 old_red = gdImageRed(im, old_color); in gdImageAABlend() 2302 … ncR = (int)(gdImageRed (src, c) * (pct / 100.0) + gdImageRed (dst, dc) * ((100 - pct) / 100.0)); in gdImageCopyMerge() 2347 …g = (0.29900f * gdImageRed(dst, dc)) + (0.58700f * gdImageGreen(dst, dc)) + (0.11400f * gdImageBlu… in gdImageCopyMergeGray() 2349 ncR = (int)(gdImageRed (src, c) * (pct / 100.0f) + g * ((100 - pct) / 100.0)); in gdImageCopyMergeGray() 2455 nc = gdImageColorResolveAlpha(dst, gdImageRed(src, c), in gdImageCopyResized() 2781 …index = gdImageColorResolveAlpha(im, gdImageRed(brush, i), gdImageGreen(brush, i), gdImageBlue(bru… in gdImageSetBrush() 2794 …index = gdImageColorResolveAlpha(im, gdImageRed(tile, i), gdImageGreen(tile, i), gdImageBlue(tile,… in gdImageSetTile() [all …]
|
H A D | gdtest.c | 332 gdImageRed (im2, i), in main()
|
H A D | gd.h | 729 #define gdImageRed(im, c) ((im)->trueColor ? gdTrueColorGetRed(c) : \ macro
|
/PHP-7.0/ext/gd/ |
H A D | gd_ctx.c | 200 if(!gdImageRed(im, i) && !gdImageGreen(im, i) && !gdImageBlue(im, i)) break; in _php_image_output_ctx()
|
H A D | gd.c | 2584 if (gdImageRed(im, i) == 0) break; in _php_image_output() 2636 if (gdImageRed(im, i) == 0) { in _php_image_output() 3021 add_assoc_long(return_value,"red", gdImageRed(im,col)); in PHP_FUNCTION()
|
Completed in 38 milliseconds