Lines Matching refs:col

201 	ZEND_ARG_INFO(0, col)
489 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)
536 ZEND_ARG_INFO(0, col)
553 ZEND_ARG_INFO(0, col)
560 ZEND_ARG_INFO(0, col)
569 ZEND_ARG_INFO(0, col)
581 ZEND_ARG_INFO(0, col)
588 ZEND_ARG_INFO(0, col)
605 ZEND_ARG_INFO(0, col)
614 ZEND_ARG_INFO(0, col)
623 ZEND_ARG_INFO(0, col)
632 ZEND_ARG_INFO(0, col)
707 ZEND_ARG_INFO(0, col)
727 ZEND_ARG_INFO(0, col)
1668 zend_long cx, cy, w, h, ST, E, col, style; in PHP_FUNCTION() local
1672 …if (zend_parse_parameters(ZEND_NUM_ARGS(), "rllllllll", &IM, &cx, &cy, &w, &h, &ST, &E, &col, &sty… in PHP_FUNCTION()
1690 gdImageFilledArc(im, cx, cy, w, h, st, e, col, style); in PHP_FUNCTION()
2901 int col; in PHP_FUNCTION() local
2917 col = index; in PHP_FUNCTION()
2919 if (col >= 0 && col < gdImageColorsTotal(im)) { in PHP_FUNCTION()
2920 gdImageColorDeallocate(im, col); in PHP_FUNCTION()
2923 php_error_docref(NULL, E_WARNING, "Color index %d out of range", col); in PHP_FUNCTION()
2975 int col; in PHP_FUNCTION() local
2986 col = color; in PHP_FUNCTION()
2988 if (col >= 0 && col < gdImageColorsTotal(im)) { in PHP_FUNCTION()
2989 im->red[col] = red; in PHP_FUNCTION()
2990 im->green[col] = green; in PHP_FUNCTION()
2991 im->blue[col] = blue; in PHP_FUNCTION()
2992 im->alpha[col] = alpha; in PHP_FUNCTION()
3005 int col; in PHP_FUNCTION() local
3016 col = index; in PHP_FUNCTION()
3018 …if ((col >= 0 && gdImageTrueColor(im)) || (!gdImageTrueColor(im) && col >= 0 && col < gdImageColor… in PHP_FUNCTION()
3021 add_assoc_long(return_value,"red", gdImageRed(im,col)); in PHP_FUNCTION()
3022 add_assoc_long(return_value,"green", gdImageGreen(im,col)); in PHP_FUNCTION()
3023 add_assoc_long(return_value,"blue", gdImageBlue(im,col)); in PHP_FUNCTION()
3024 add_assoc_long(return_value,"alpha", gdImageAlpha(im,col)); in PHP_FUNCTION()
3026 php_error_docref(NULL, E_WARNING, "Color index %d out of range", col); in PHP_FUNCTION()
3088 zend_long x, y, col; in PHP_FUNCTION() local
3091 if (zend_parse_parameters(ZEND_NUM_ARGS(), "rlll", &IM, &x, &y, &col) == FAILURE) { in PHP_FUNCTION()
3099 gdImageSetPixel(im, x, y, col); in PHP_FUNCTION()
3109 zend_long x1, y1, x2, y2, col; in PHP_FUNCTION() local
3112 if (zend_parse_parameters(ZEND_NUM_ARGS(), "rlllll", &IM, &x1, &y1, &x2, &y2, &col) == FAILURE) { in PHP_FUNCTION()
3122 gdImageAALine(im, x1, y1, x2, y2, col); in PHP_FUNCTION()
3126 gdImageLine(im, x1, y1, x2, y2, col); in PHP_FUNCTION()
3137 zend_long x1, y1, x2, y2, col; in PHP_FUNCTION() local
3140 if (zend_parse_parameters(ZEND_NUM_ARGS(), "rlllll", &IM, &x1, &y1, &x2, &y2, &col) == FAILURE) { in PHP_FUNCTION()
3148 gdImageDashedLine(im, x1, y1, x2, y2, col); in PHP_FUNCTION()
3158 zend_long x1, y1, x2, y2, col; in PHP_FUNCTION() local
3161 if (zend_parse_parameters(ZEND_NUM_ARGS(), "rlllll", &IM, &x1, &y1, &x2, &y2, &col) == FAILURE) { in PHP_FUNCTION()
3169 gdImageRectangle(im, x1, y1, x2, y2, col); in PHP_FUNCTION()
3179 zend_long x1, y1, x2, y2, col; in PHP_FUNCTION() local
3182 if (zend_parse_parameters(ZEND_NUM_ARGS(), "rlllll", &IM, &x1, &y1, &x2, &y2, &col) == FAILURE) { in PHP_FUNCTION()
3189 gdImageFilledRectangle(im, x1, y1, x2, y2, col); in PHP_FUNCTION()
3199 zend_long cx, cy, w, h, ST, E, col; in PHP_FUNCTION() local
3203 …if (zend_parse_parameters(ZEND_NUM_ARGS(), "rlllllll", &IM, &cx, &cy, &w, &h, &ST, &E, &col) == FA… in PHP_FUNCTION()
3221 gdImageArc(im, cx, cy, w, h, st, e, col); in PHP_FUNCTION()
3252 zend_long x, y, border, col; in PHP_FUNCTION() local
3255 if (zend_parse_parameters(ZEND_NUM_ARGS(), "rllll", &IM, &x, &y, &border, &col) == FAILURE) { in PHP_FUNCTION()
3263 gdImageFillToBorder(im, x, y, border, col); in PHP_FUNCTION()
3273 zend_long x, y, col; in PHP_FUNCTION() local
3276 if (zend_parse_parameters(ZEND_NUM_ARGS(), "rlll", &IM, &x, &y, &col) == FAILURE) { in PHP_FUNCTION()
3284 gdImageFill(im, x, y, col); in PHP_FUNCTION()
3369 int npoints, col, nelem, i; in php_imagepolygon() local
3380 col = COL; in php_imagepolygon()
3408 gdImageFilledPolygon(im, points, npoints, col); in php_imagepolygon()
3410 gdImagePolygon(im, points, npoints, col); in php_imagepolygon()
3548 int ch = 0, col, x, y, size, i, l = 0; in php_imagechar() local
3560 col = COL; in php_imagechar()
3577 gdImageChar(im, font, x, y, ch, col); in php_imagechar()
3580 php_gdimagecharup(im, font, x, y, ch, col); in php_imagechar()
3584 gdImageChar(im, font, x, y, (int) ((unsigned char) str[i]), col); in php_imagechar()
3591 gdImageCharUp(im, font, x, y, (int) str[i], col); in php_imagechar()
3862 zend_long col = -1, x = 0, y = 0; in php_imagettftext_common() local
3880 …} else if (zend_parse_parameters(argc, "rddlllss|a", &IM, &ptsize, &angle, &x, &y, &col, &fontname… in php_imagettftext_common()
3921 error = gdImageStringFTEx(im, brect, col, fontname, ptsize, angle, x, y, str, &strex); in php_imagettftext_common()
3924 error = gdImageStringFT(im, brect, col, fontname, ptsize, angle, x, y, str); in php_imagettftext_common()