Lines Matching refs:col

196 	ZEND_ARG_INFO(0, col)
481 ZEND_ARG_INFO(0, col)
490 ZEND_ARG_INFO(0, col)
499 ZEND_ARG_INFO(0, col)
508 ZEND_ARG_INFO(0, col)
517 ZEND_ARG_INFO(0, col)
528 ZEND_ARG_INFO(0, col)
545 ZEND_ARG_INFO(0, col)
552 ZEND_ARG_INFO(0, col)
561 ZEND_ARG_INFO(0, col)
573 ZEND_ARG_INFO(0, col)
580 ZEND_ARG_INFO(0, col)
597 ZEND_ARG_INFO(0, col)
606 ZEND_ARG_INFO(0, col)
615 ZEND_ARG_INFO(0, col)
624 ZEND_ARG_INFO(0, col)
699 ZEND_ARG_INFO(0, col)
719 ZEND_ARG_INFO(0, col)
1735 long cx, cy, w, h, ST, E, col, style; in PHP_FUNCTION() local
1739 …s(ZEND_NUM_ARGS() TSRMLS_CC, "rllllllll", &IM, &cx, &cy, &w, &h, &ST, &E, &col, &style) == FAILURE… in PHP_FUNCTION()
1755 gdImageFilledArc(im, cx, cy, w, h, st, e, col, style); in PHP_FUNCTION()
2905 int col; in PHP_FUNCTION() local
2919 col = index; in PHP_FUNCTION()
2921 if (col >= 0 && col < gdImageColorsTotal(im)) { in PHP_FUNCTION()
2922 gdImageColorDeallocate(im, col); in PHP_FUNCTION()
2925 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Color index %d out of range", col); in PHP_FUNCTION()
2973 int col; in PHP_FUNCTION() local
2982 col = color; in PHP_FUNCTION()
2984 if (col >= 0 && col < gdImageColorsTotal(im)) { in PHP_FUNCTION()
2985 im->red[col] = red; in PHP_FUNCTION()
2986 im->green[col] = green; in PHP_FUNCTION()
2987 im->blue[col] = blue; in PHP_FUNCTION()
2988 im->alpha[col] = alpha; in PHP_FUNCTION()
3001 int col; in PHP_FUNCTION() local
3010 col = index; in PHP_FUNCTION()
3012 …if ((col >= 0 && gdImageTrueColor(im)) || (!gdImageTrueColor(im) && col >= 0 && col < gdImageColor… in PHP_FUNCTION()
3015 add_assoc_long(return_value,"red", gdImageRed(im,col)); in PHP_FUNCTION()
3016 add_assoc_long(return_value,"green", gdImageGreen(im,col)); in PHP_FUNCTION()
3017 add_assoc_long(return_value,"blue", gdImageBlue(im,col)); in PHP_FUNCTION()
3018 add_assoc_long(return_value,"alpha", gdImageAlpha(im,col)); in PHP_FUNCTION()
3020 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Color index %d out of range", col); in PHP_FUNCTION()
3075 long x, y, col; in PHP_FUNCTION() local
3078 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "rlll", &IM, &x, &y, &col) == FAILURE) { in PHP_FUNCTION()
3083 gdImageSetPixel(im, x, y, col); in PHP_FUNCTION()
3093 long x1, y1, x2, y2, col; in PHP_FUNCTION() local
3096 …if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "rlllll", &IM, &x1, &y1, &x2, &y2, &col) == F… in PHP_FUNCTION()
3104 gdImageAALine(im, x1, y1, x2, y2, col); in PHP_FUNCTION()
3108 gdImageLine(im, x1, y1, x2, y2, col); in PHP_FUNCTION()
3119 long x1, y1, x2, y2, col; in PHP_FUNCTION() local
3122 …if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "rlllll", &IM, &x1, &y1, &x2, &y2, &col) == F… in PHP_FUNCTION()
3127 gdImageDashedLine(im, x1, y1, x2, y2, col); in PHP_FUNCTION()
3137 long x1, y1, x2, y2, col; in PHP_FUNCTION() local
3140 …if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "rlllll", &IM, &x1, &y1, &x2, &y2, &col) == F… in PHP_FUNCTION()
3145 gdImageRectangle(im, x1, y1, x2, y2, col); in PHP_FUNCTION()
3155 long x1, y1, x2, y2, col; in PHP_FUNCTION() local
3158 …if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "rlllll", &IM, &x1, &y1, &x2, &y2, &col) == F… in PHP_FUNCTION()
3163 gdImageFilledRectangle(im, x1, y1, x2, y2, col); in PHP_FUNCTION()
3173 long cx, cy, w, h, ST, E, col; in PHP_FUNCTION() local
3177 …rameters(ZEND_NUM_ARGS() TSRMLS_CC, "rlllllll", &IM, &cx, &cy, &w, &h, &ST, &E, &col) == FAILURE) { in PHP_FUNCTION()
3193 gdImageArc(im, cx, cy, w, h, st, e, col); in PHP_FUNCTION()
3222 long x, y, border, col; in PHP_FUNCTION() local
3225 …if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "rllll", &IM, &x, &y, &border, &col) == FAILU… in PHP_FUNCTION()
3230 gdImageFillToBorder(im, x, y, border, col); in PHP_FUNCTION()
3240 long x, y, col; in PHP_FUNCTION() local
3243 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "rlll", &IM, &x, &y, &col) == FAILURE) { in PHP_FUNCTION()
3248 gdImageFill(im, x, y, col); in PHP_FUNCTION()
3327 int npoints, col, nelem, i; in php_imagepolygon() local
3336 col = COL; in php_imagepolygon()
3380 gdImageFilledPolygon(im, points, npoints, col); in php_imagepolygon()
3382 gdImagePolygon(im, points, npoints, col); in php_imagepolygon()
3518 int ch = 0, col, x, y, size, i, l = 0; in php_imagechar() local
3528 col = COL; in php_imagechar()
3545 gdImageChar(im, font, x, y, ch, col); in php_imagechar()
3548 php_gdimagecharup(im, font, x, y, ch, col); in php_imagechar()
3552 gdImageChar(im, font, x, y, (int) ((unsigned char) str[i]), col); in php_imagechar()
3559 gdImageCharUp(im, font, x, y, (int) str[i], col); in php_imagechar()
3806 long col = -1, x = -1, y = -1; in php_imagettftext_common() local
3823 …} else if (zend_parse_parameters(argc TSRMLS_CC, "rddlllss|a", &IM, &ptsize, &angle, &x, &y, &col,… in php_imagettftext_common()
3873 error = gdImageStringFTEx(im, brect, col, fontname, ptsize, angle, x, y, str, &strex); in php_imagettftext_common()
3876 error = gdImageStringFT(im, brect, col, fontname, ptsize, angle, x, y, str); in php_imagettftext_common()