Lines Matching refs:col
851 zend_long cx, cy, w, h, ST, E, col, style; in PHP_FUNCTION() local
863 Z_PARAM_LONG(col) in PHP_FUNCTION()
879 gdImageFilledArc(im, cx, cy, w, h, st, e, col, style); in PHP_FUNCTION()
2333 int col; in PHP_FUNCTION() local
2348 col = index; in PHP_FUNCTION()
2350 if (col >= 0 && col < gdImageColorsTotal(im)) { in PHP_FUNCTION()
2351 gdImageColorDeallocate(im, col); in PHP_FUNCTION()
2413 int col; in PHP_FUNCTION() local
2433 col = color; in PHP_FUNCTION()
2435 if (col >= 0 && col < gdImageColorsTotal(im)) { in PHP_FUNCTION()
2436 im->red[col] = red; in PHP_FUNCTION()
2437 im->green[col] = green; in PHP_FUNCTION()
2438 im->blue[col] = blue; in PHP_FUNCTION()
2439 im->alpha[col] = alpha; in PHP_FUNCTION()
2451 int col; in PHP_FUNCTION() local
2461 col = index; in PHP_FUNCTION()
2463 …if ((col >= 0 && gdImageTrueColor(im)) || (!gdImageTrueColor(im) && col >= 0 && col < gdImageColor… in PHP_FUNCTION()
2466 add_assoc_long(return_value,"red", gdImageRed(im,col)); in PHP_FUNCTION()
2467 add_assoc_long(return_value,"green", gdImageGreen(im,col)); in PHP_FUNCTION()
2468 add_assoc_long(return_value,"blue", gdImageBlue(im,col)); in PHP_FUNCTION()
2469 add_assoc_long(return_value,"alpha", gdImageAlpha(im,col)); in PHP_FUNCTION()
2538 zend_long x, y, col; in PHP_FUNCTION() local
2545 Z_PARAM_LONG(col) in PHP_FUNCTION()
2550 gdImageSetPixel(im, x, y, col); in PHP_FUNCTION()
2559 zend_long x1, y1, x2, y2, col; in PHP_FUNCTION() local
2568 Z_PARAM_LONG(col) in PHP_FUNCTION()
2575 gdImageSetAntiAliased(im, col); in PHP_FUNCTION()
2576 col = gdAntiAliased; in PHP_FUNCTION()
2578 gdImageLine(im, x1, y1, x2, y2, col); in PHP_FUNCTION()
2587 zend_long x1, y1, x2, y2, col; in PHP_FUNCTION() local
2596 Z_PARAM_LONG(col) in PHP_FUNCTION()
2601 gdImageDashedLine(im, x1, y1, x2, y2, col); in PHP_FUNCTION()
2610 zend_long x1, y1, x2, y2, col; in PHP_FUNCTION() local
2619 Z_PARAM_LONG(col) in PHP_FUNCTION()
2624 gdImageRectangle(im, x1, y1, x2, y2, col); in PHP_FUNCTION()
2633 zend_long x1, y1, x2, y2, col; in PHP_FUNCTION() local
2642 Z_PARAM_LONG(col) in PHP_FUNCTION()
2646 gdImageFilledRectangle(im, x1, y1, x2, y2, col); in PHP_FUNCTION()
2655 zend_long cx, cy, w, h, ST, E, col; in PHP_FUNCTION() local
2667 Z_PARAM_LONG(col) in PHP_FUNCTION()
2682 gdImageArc(im, cx, cy, w, h, st, e, col); in PHP_FUNCTION()
2714 zend_long x, y, border, col; in PHP_FUNCTION() local
2722 Z_PARAM_LONG(col) in PHP_FUNCTION()
2727 gdImageFillToBorder(im, x, y, border, col); in PHP_FUNCTION()
2736 zend_long x, y, col; in PHP_FUNCTION() local
2743 Z_PARAM_LONG(col) in PHP_FUNCTION()
2748 gdImageFill(im, x, y, col); in PHP_FUNCTION()
2830 int npoints, col, nelem, i; in php_imagepolygon() local
2855 col = COL; in php_imagepolygon()
2880 gdImageSetAntiAliased(im, col); in php_imagepolygon()
2881 col = gdAntiAliased; in php_imagepolygon()
2885 gdImageOpenPolygon(im, points, npoints, col); in php_imagepolygon()
2888 gdImagePolygon(im, points, npoints, col); in php_imagepolygon()
2891 gdImageFilledPolygon(im, points, npoints, col); in php_imagepolygon()
3011 int ch = 0, col, x, y, i, l = 0; in php_imagechar() local
3027 col = COL; in php_imagechar()
3043 gdImageChar(im, font, x, y, ch, col); in php_imagechar()
3046 php_gdimagecharup(im, font, x, y, ch, col); in php_imagechar()
3050 gdImageChar(im, font, x, y, (int) ((unsigned char) str[i]), col); in php_imagechar()
3057 gdImageCharUp(im, font, x, y, (int) str[i], col); in php_imagechar()
3362 zend_long col = -1, x = 0, y = 0; in php_imagettftext_common() local
3375 …ZEND_NUM_ARGS(), "Oddlllss|a", &IM, gd_image_ce, &ptsize, &angle, &x, &y, &col, &fontname, &fontna… in php_imagettftext_common()
3416 error = gdImageStringFTEx(im, brect, col, fontname, ptsize, angle, x, y, str, &strex); in php_imagettftext_common()
3418 error = gdImageStringFT(im, brect, col, fontname, ptsize, angle, x, y, str); in php_imagettftext_common()