Lines Matching refs:col

196 	ZEND_ARG_INFO(0, col)
498 ZEND_ARG_INFO(0, col)
507 ZEND_ARG_INFO(0, col)
516 ZEND_ARG_INFO(0, col)
525 ZEND_ARG_INFO(0, col)
534 ZEND_ARG_INFO(0, col)
545 ZEND_ARG_INFO(0, col)
562 ZEND_ARG_INFO(0, col)
569 ZEND_ARG_INFO(0, col)
578 ZEND_ARG_INFO(0, col)
590 ZEND_ARG_INFO(0, col)
597 ZEND_ARG_INFO(0, col)
604 ZEND_ARG_INFO(0, col)
621 ZEND_ARG_INFO(0, col)
630 ZEND_ARG_INFO(0, col)
639 ZEND_ARG_INFO(0, col)
648 ZEND_ARG_INFO(0, col)
735 ZEND_ARG_INFO(0, col)
755 ZEND_ARG_INFO(0, col)
1720 zend_long cx, cy, w, h, ST, E, col, style; in PHP_FUNCTION() local
1724 …if (zend_parse_parameters(ZEND_NUM_ARGS(), "rllllllll", &IM, &cx, &cy, &w, &h, &ST, &E, &col, &sty… in PHP_FUNCTION()
1742 gdImageFilledArc(im, cx, cy, w, h, st, e, col, style); in PHP_FUNCTION()
2960 int col; in PHP_FUNCTION() local
2976 col = index; in PHP_FUNCTION()
2978 if (col >= 0 && col < gdImageColorsTotal(im)) { in PHP_FUNCTION()
2979 gdImageColorDeallocate(im, col); in PHP_FUNCTION()
2982 php_error_docref(NULL, E_WARNING, "Color index %d out of range", col); in PHP_FUNCTION()
3034 int col; in PHP_FUNCTION() local
3045 col = color; in PHP_FUNCTION()
3047 if (col >= 0 && col < gdImageColorsTotal(im)) { in PHP_FUNCTION()
3048 im->red[col] = red; in PHP_FUNCTION()
3049 im->green[col] = green; in PHP_FUNCTION()
3050 im->blue[col] = blue; in PHP_FUNCTION()
3051 im->alpha[col] = alpha; in PHP_FUNCTION()
3064 int col; in PHP_FUNCTION() local
3075 col = index; in PHP_FUNCTION()
3077 …if ((col >= 0 && gdImageTrueColor(im)) || (!gdImageTrueColor(im) && col >= 0 && col < gdImageColor… in PHP_FUNCTION()
3080 add_assoc_long(return_value,"red", gdImageRed(im,col)); in PHP_FUNCTION()
3081 add_assoc_long(return_value,"green", gdImageGreen(im,col)); in PHP_FUNCTION()
3082 add_assoc_long(return_value,"blue", gdImageBlue(im,col)); in PHP_FUNCTION()
3083 add_assoc_long(return_value,"alpha", gdImageAlpha(im,col)); in PHP_FUNCTION()
3085 php_error_docref(NULL, E_WARNING, "Color index %d out of range", col); in PHP_FUNCTION()
3149 zend_long x, y, col; in PHP_FUNCTION() local
3156 Z_PARAM_LONG(col) in PHP_FUNCTION()
3163 gdImageSetPixel(im, x, y, col); in PHP_FUNCTION()
3173 zend_long x1, y1, x2, y2, col; in PHP_FUNCTION() local
3176 if (zend_parse_parameters(ZEND_NUM_ARGS(), "rlllll", &IM, &x1, &y1, &x2, &y2, &col) == FAILURE) { in PHP_FUNCTION()
3185 gdImageSetAntiAliased(im, col); in PHP_FUNCTION()
3186 col = gdAntiAliased; in PHP_FUNCTION()
3188 gdImageLine(im, x1, y1, x2, y2, col); in PHP_FUNCTION()
3198 zend_long x1, y1, x2, y2, col; in PHP_FUNCTION() local
3201 if (zend_parse_parameters(ZEND_NUM_ARGS(), "rlllll", &IM, &x1, &y1, &x2, &y2, &col) == FAILURE) { in PHP_FUNCTION()
3209 gdImageDashedLine(im, x1, y1, x2, y2, col); in PHP_FUNCTION()
3219 zend_long x1, y1, x2, y2, col; in PHP_FUNCTION() local
3222 if (zend_parse_parameters(ZEND_NUM_ARGS(), "rlllll", &IM, &x1, &y1, &x2, &y2, &col) == FAILURE) { in PHP_FUNCTION()
3230 gdImageRectangle(im, x1, y1, x2, y2, col); in PHP_FUNCTION()
3240 zend_long x1, y1, x2, y2, col; in PHP_FUNCTION() local
3243 if (zend_parse_parameters(ZEND_NUM_ARGS(), "rlllll", &IM, &x1, &y1, &x2, &y2, &col) == FAILURE) { in PHP_FUNCTION()
3250 gdImageFilledRectangle(im, x1, y1, x2, y2, col); in PHP_FUNCTION()
3260 zend_long cx, cy, w, h, ST, E, col; in PHP_FUNCTION() local
3264 …if (zend_parse_parameters(ZEND_NUM_ARGS(), "rlllllll", &IM, &cx, &cy, &w, &h, &ST, &E, &col) == FA… in PHP_FUNCTION()
3282 gdImageArc(im, cx, cy, w, h, st, e, col); in PHP_FUNCTION()
3313 zend_long x, y, border, col; in PHP_FUNCTION() local
3316 if (zend_parse_parameters(ZEND_NUM_ARGS(), "rllll", &IM, &x, &y, &border, &col) == FAILURE) { in PHP_FUNCTION()
3324 gdImageFillToBorder(im, x, y, border, col); in PHP_FUNCTION()
3334 zend_long x, y, col; in PHP_FUNCTION() local
3337 if (zend_parse_parameters(ZEND_NUM_ARGS(), "rlll", &IM, &x, &y, &col) == FAILURE) { in PHP_FUNCTION()
3345 gdImageFill(im, x, y, col); in PHP_FUNCTION()
3431 int npoints, col, nelem, i; in php_imagepolygon() local
3442 col = COL; in php_imagepolygon()
3470 gdImageSetAntiAliased(im, col); in php_imagepolygon()
3471 col = gdAntiAliased; in php_imagepolygon()
3475 gdImageOpenPolygon(im, points, npoints, col); in php_imagepolygon()
3478 gdImagePolygon(im, points, npoints, col); in php_imagepolygon()
3481 gdImageFilledPolygon(im, points, npoints, col); in php_imagepolygon()
3628 int ch = 0, col, x, y, size, i, l = 0; in php_imagechar() local
3640 col = COL; in php_imagechar()
3657 gdImageChar(im, font, x, y, ch, col); in php_imagechar()
3660 php_gdimagecharup(im, font, x, y, ch, col); in php_imagechar()
3664 gdImageChar(im, font, x, y, (int) ((unsigned char) str[i]), col); in php_imagechar()
3671 gdImageCharUp(im, font, x, y, (int) str[i], col); in php_imagechar()
3989 zend_long col = -1, x = 0, y = 0; in php_imagettftext_common() local
4007 …} else if (zend_parse_parameters(argc, "rddlllss|a", &IM, &ptsize, &angle, &x, &y, &col, &fontname… in php_imagettftext_common()
4048 error = gdImageStringFTEx(im, brect, col, fontname, ptsize, angle, x, y, str, &strex); in php_imagettftext_common()
4051 error = gdImageStringFT(im, brect, col, fontname, ptsize, angle, x, y, str); in php_imagettftext_common()