Lines Matching refs:col

996 	zend_long cx, cy, w, h, ST, E, col, style;  in PHP_FUNCTION()  local
1000 …END_NUM_ARGS(), "Ollllllll", &IM, gd_image_ce, &cx, &cy, &w, &h, &ST, &E, &col, &style) == FAILURE… in PHP_FUNCTION()
1016 gdImageFilledArc(im, cx, cy, w, h, st, e, col, style); in PHP_FUNCTION()
2287 int col; in PHP_FUNCTION() local
2301 col = index; in PHP_FUNCTION()
2303 if (col >= 0 && col < gdImageColorsTotal(im)) { in PHP_FUNCTION()
2304 gdImageColorDeallocate(im, col); in PHP_FUNCTION()
2360 int col; in PHP_FUNCTION() local
2373 col = color; in PHP_FUNCTION()
2375 if (col >= 0 && col < gdImageColorsTotal(im)) { in PHP_FUNCTION()
2376 im->red[col] = red; in PHP_FUNCTION()
2377 im->green[col] = green; in PHP_FUNCTION()
2378 im->blue[col] = blue; in PHP_FUNCTION()
2379 im->alpha[col] = alpha; in PHP_FUNCTION()
2391 int col; in PHP_FUNCTION() local
2400 col = index; in PHP_FUNCTION()
2402 …if ((col >= 0 && gdImageTrueColor(im)) || (!gdImageTrueColor(im) && col >= 0 && col < gdImageColor… in PHP_FUNCTION()
2405 add_assoc_long(return_value,"red", gdImageRed(im,col)); in PHP_FUNCTION()
2406 add_assoc_long(return_value,"green", gdImageGreen(im,col)); in PHP_FUNCTION()
2407 add_assoc_long(return_value,"blue", gdImageBlue(im,col)); in PHP_FUNCTION()
2408 add_assoc_long(return_value,"alpha", gdImageAlpha(im,col)); in PHP_FUNCTION()
2475 zend_long x, y, col; in PHP_FUNCTION() local
2482 Z_PARAM_LONG(col) in PHP_FUNCTION()
2487 gdImageSetPixel(im, x, y, col); in PHP_FUNCTION()
2496 zend_long x1, y1, x2, y2, col; in PHP_FUNCTION() local
2499 …if (zend_parse_parameters(ZEND_NUM_ARGS(), "Olllll", &IM, gd_image_ce, &x1, &y1, &x2, &y2, &col) … in PHP_FUNCTION()
2506 gdImageSetAntiAliased(im, col); in PHP_FUNCTION()
2507 col = gdAntiAliased; in PHP_FUNCTION()
2509 gdImageLine(im, x1, y1, x2, y2, col); in PHP_FUNCTION()
2518 zend_long x1, y1, x2, y2, col; in PHP_FUNCTION() local
2521 …if (zend_parse_parameters(ZEND_NUM_ARGS(), "Olllll", &IM, gd_image_ce, &x1, &y1, &x2, &y2, &col) =… in PHP_FUNCTION()
2527 gdImageDashedLine(im, x1, y1, x2, y2, col); in PHP_FUNCTION()
2536 zend_long x1, y1, x2, y2, col; in PHP_FUNCTION() local
2539 …if (zend_parse_parameters(ZEND_NUM_ARGS(), "Olllll", &IM, gd_image_ce, &x1, &y1, &x2, &y2, &col) =… in PHP_FUNCTION()
2545 gdImageRectangle(im, x1, y1, x2, y2, col); in PHP_FUNCTION()
2554 zend_long x1, y1, x2, y2, col; in PHP_FUNCTION() local
2557 …if (zend_parse_parameters(ZEND_NUM_ARGS(), "Olllll", &IM, gd_image_ce, &x1, &y1, &x2, &y2, &col) =… in PHP_FUNCTION()
2562 gdImageFilledRectangle(im, x1, y1, x2, y2, col); in PHP_FUNCTION()
2571 zend_long cx, cy, w, h, ST, E, col; in PHP_FUNCTION() local
2575 …eters(ZEND_NUM_ARGS(), "Olllllll", &IM, gd_image_ce, &cx, &cy, &w, &h, &ST, &E, &col) == FAILURE) { in PHP_FUNCTION()
2591 gdImageArc(im, cx, cy, w, h, st, e, col); in PHP_FUNCTION()
2618 zend_long x, y, border, col; in PHP_FUNCTION() local
2621 …if (zend_parse_parameters(ZEND_NUM_ARGS(), "Ollll", &IM, gd_image_ce, &x, &y, &border, &col) == F… in PHP_FUNCTION()
2627 gdImageFillToBorder(im, x, y, border, col); in PHP_FUNCTION()
2636 zend_long x, y, col; in PHP_FUNCTION() local
2639 if (zend_parse_parameters(ZEND_NUM_ARGS(), "Olll", &IM, gd_image_ce, &x, &y, &col) == FAILURE) { in PHP_FUNCTION()
2645 gdImageFill(im, x, y, col); in PHP_FUNCTION()
2723 int npoints, col, nelem, i; in php_imagepolygon() local
2743 col = COL; in php_imagepolygon()
2768 gdImageSetAntiAliased(im, col); in php_imagepolygon()
2769 col = gdAntiAliased; in php_imagepolygon()
2773 gdImageOpenPolygon(im, points, npoints, col); in php_imagepolygon()
2776 gdImagePolygon(im, points, npoints, col); in php_imagepolygon()
2779 gdImageFilledPolygon(im, points, npoints, col); in php_imagepolygon()
2900 int ch = 0, col, x, y, i, l = 0; in php_imagechar() local
2917 col = COL; in php_imagechar()
2933 gdImageChar(im, font, x, y, ch, col); in php_imagechar()
2936 php_gdimagecharup(im, font, x, y, ch, col); in php_imagechar()
2940 gdImageChar(im, font, x, y, (int) ((unsigned char) str[i]), col); in php_imagechar()
2947 gdImageCharUp(im, font, x, y, (int) str[i], col); in php_imagechar()
3216 zend_long col = -1, x = 0, y = 0; in php_imagettftext_common() local
3229 …ZEND_NUM_ARGS(), "Oddlllss|a", &IM, gd_image_ce, &ptsize, &angle, &x, &y, &col, &fontname, &fontna… in php_imagettftext_common()
3267 error = gdImageStringFTEx(im, brect, col, fontname, ptsize, angle, x, y, str, &strex); in php_imagettftext_common()
3269 error = gdImageStringFT(im, brect, col, fontname, ptsize, angle, x, y, str); in php_imagettftext_common()