Lines Matching refs:col

206 	ZEND_ARG_INFO(0, col)
514 ZEND_ARG_INFO(0, col)
523 ZEND_ARG_INFO(0, col)
532 ZEND_ARG_INFO(0, col)
541 ZEND_ARG_INFO(0, col)
550 ZEND_ARG_INFO(0, col)
561 ZEND_ARG_INFO(0, col)
578 ZEND_ARG_INFO(0, col)
585 ZEND_ARG_INFO(0, col)
594 ZEND_ARG_INFO(0, col)
606 ZEND_ARG_INFO(0, col)
613 ZEND_ARG_INFO(0, col)
620 ZEND_ARG_INFO(0, col)
637 ZEND_ARG_INFO(0, col)
646 ZEND_ARG_INFO(0, col)
655 ZEND_ARG_INFO(0, col)
664 ZEND_ARG_INFO(0, col)
750 ZEND_ARG_INFO(0, col)
769 ZEND_ARG_INFO(0, col)
1763 zend_long cx, cy, w, h, ST, E, col, style; in PHP_FUNCTION() local
1767 …if (zend_parse_parameters(ZEND_NUM_ARGS(), "rllllllll", &IM, &cx, &cy, &w, &h, &ST, &E, &col, &sty… in PHP_FUNCTION()
1785 gdImageFilledArc(im, cx, cy, w, h, st, e, col, style); in PHP_FUNCTION()
3030 int col; in PHP_FUNCTION() local
3046 col = index; in PHP_FUNCTION()
3048 if (col >= 0 && col < gdImageColorsTotal(im)) { in PHP_FUNCTION()
3049 gdImageColorDeallocate(im, col); in PHP_FUNCTION()
3052 php_error_docref(NULL, E_WARNING, "Color index %d out of range", col); in PHP_FUNCTION()
3112 int col; in PHP_FUNCTION() local
3128 col = color; in PHP_FUNCTION()
3130 if (col >= 0 && col < gdImageColorsTotal(im)) { in PHP_FUNCTION()
3131 im->red[col] = red; in PHP_FUNCTION()
3132 im->green[col] = green; in PHP_FUNCTION()
3133 im->blue[col] = blue; in PHP_FUNCTION()
3134 im->alpha[col] = alpha; in PHP_FUNCTION()
3147 int col; in PHP_FUNCTION() local
3158 col = index; in PHP_FUNCTION()
3160 …if ((col >= 0 && gdImageTrueColor(im)) || (!gdImageTrueColor(im) && col >= 0 && col < gdImageColor… in PHP_FUNCTION()
3163 add_assoc_long(return_value,"red", gdImageRed(im,col)); in PHP_FUNCTION()
3164 add_assoc_long(return_value,"green", gdImageGreen(im,col)); in PHP_FUNCTION()
3165 add_assoc_long(return_value,"blue", gdImageBlue(im,col)); in PHP_FUNCTION()
3166 add_assoc_long(return_value,"alpha", gdImageAlpha(im,col)); in PHP_FUNCTION()
3168 php_error_docref(NULL, E_WARNING, "Color index %d out of range", col); in PHP_FUNCTION()
3232 zend_long x, y, col; in PHP_FUNCTION() local
3239 Z_PARAM_LONG(col) in PHP_FUNCTION()
3246 gdImageSetPixel(im, x, y, col); in PHP_FUNCTION()
3256 zend_long x1, y1, x2, y2, col; in PHP_FUNCTION() local
3259 if (zend_parse_parameters(ZEND_NUM_ARGS(), "rlllll", &IM, &x1, &y1, &x2, &y2, &col) == FAILURE) { in PHP_FUNCTION()
3268 gdImageSetAntiAliased(im, col); in PHP_FUNCTION()
3269 col = gdAntiAliased; in PHP_FUNCTION()
3271 gdImageLine(im, x1, y1, x2, y2, col); in PHP_FUNCTION()
3281 zend_long x1, y1, x2, y2, col; in PHP_FUNCTION() local
3284 if (zend_parse_parameters(ZEND_NUM_ARGS(), "rlllll", &IM, &x1, &y1, &x2, &y2, &col) == FAILURE) { in PHP_FUNCTION()
3292 gdImageDashedLine(im, x1, y1, x2, y2, col); in PHP_FUNCTION()
3302 zend_long x1, y1, x2, y2, col; in PHP_FUNCTION() local
3305 if (zend_parse_parameters(ZEND_NUM_ARGS(), "rlllll", &IM, &x1, &y1, &x2, &y2, &col) == FAILURE) { in PHP_FUNCTION()
3313 gdImageRectangle(im, x1, y1, x2, y2, col); in PHP_FUNCTION()
3323 zend_long x1, y1, x2, y2, col; in PHP_FUNCTION() local
3326 if (zend_parse_parameters(ZEND_NUM_ARGS(), "rlllll", &IM, &x1, &y1, &x2, &y2, &col) == FAILURE) { in PHP_FUNCTION()
3333 gdImageFilledRectangle(im, x1, y1, x2, y2, col); in PHP_FUNCTION()
3343 zend_long cx, cy, w, h, ST, E, col; in PHP_FUNCTION() local
3347 …if (zend_parse_parameters(ZEND_NUM_ARGS(), "rlllllll", &IM, &cx, &cy, &w, &h, &ST, &E, &col) == FA… in PHP_FUNCTION()
3365 gdImageArc(im, cx, cy, w, h, st, e, col); in PHP_FUNCTION()
3396 zend_long x, y, border, col; in PHP_FUNCTION() local
3399 if (zend_parse_parameters(ZEND_NUM_ARGS(), "rllll", &IM, &x, &y, &border, &col) == FAILURE) { in PHP_FUNCTION()
3407 gdImageFillToBorder(im, x, y, border, col); in PHP_FUNCTION()
3417 zend_long x, y, col; in PHP_FUNCTION() local
3420 if (zend_parse_parameters(ZEND_NUM_ARGS(), "rlll", &IM, &x, &y, &col) == FAILURE) { in PHP_FUNCTION()
3428 gdImageFill(im, x, y, col); in PHP_FUNCTION()
3514 int npoints, col, nelem, i; in php_imagepolygon() local
3525 col = COL; in php_imagepolygon()
3553 gdImageSetAntiAliased(im, col); in php_imagepolygon()
3554 col = gdAntiAliased; in php_imagepolygon()
3558 gdImageOpenPolygon(im, points, npoints, col); in php_imagepolygon()
3561 gdImagePolygon(im, points, npoints, col); in php_imagepolygon()
3564 gdImageFilledPolygon(im, points, npoints, col); in php_imagepolygon()
3711 int ch = 0, col, x, y, size, i, l = 0; in php_imagechar() local
3723 col = COL; in php_imagechar()
3740 gdImageChar(im, font, x, y, ch, col); in php_imagechar()
3743 php_gdimagecharup(im, font, x, y, ch, col); in php_imagechar()
3747 gdImageChar(im, font, x, y, (int) ((unsigned char) str[i]), col); in php_imagechar()
3754 gdImageCharUp(im, font, x, y, (int) str[i], col); in php_imagechar()
4067 zend_long col = -1, x = 0, y = 0; in php_imagettftext_common() local
4085 …} else if (zend_parse_parameters(argc, "rddlllss|a", &IM, &ptsize, &angle, &x, &y, &col, &fontname… in php_imagettftext_common()
4125 error = gdImageStringFTEx(im, brect, col, fontname, ptsize, angle, x, y, str, &strex); in php_imagettftext_common()
4127 error = gdImageStringFT(im, brect, col, fontname, ptsize, angle, x, y, str); in php_imagettftext_common()