Lines Matching refs:col

851 	zend_long cx, cy, w, h, ST, E, col, style;  in PHP_FUNCTION()  local
863 Z_PARAM_LONG(col) in PHP_FUNCTION()
879 gdImageFilledArc(im, cx, cy, w, h, st, e, col, style); in PHP_FUNCTION()
2308 int col; in PHP_FUNCTION() local
2323 col = index; in PHP_FUNCTION()
2325 if (col >= 0 && col < gdImageColorsTotal(im)) { in PHP_FUNCTION()
2326 gdImageColorDeallocate(im, col); in PHP_FUNCTION()
2388 int col; in PHP_FUNCTION() local
2408 col = color; in PHP_FUNCTION()
2410 if (col >= 0 && col < gdImageColorsTotal(im)) { in PHP_FUNCTION()
2411 im->red[col] = red; in PHP_FUNCTION()
2412 im->green[col] = green; in PHP_FUNCTION()
2413 im->blue[col] = blue; in PHP_FUNCTION()
2414 im->alpha[col] = alpha; in PHP_FUNCTION()
2426 int col; in PHP_FUNCTION() local
2436 col = index; in PHP_FUNCTION()
2438 …if ((col >= 0 && gdImageTrueColor(im)) || (!gdImageTrueColor(im) && col >= 0 && col < gdImageColor… in PHP_FUNCTION()
2441 add_assoc_long(return_value,"red", gdImageRed(im,col)); in PHP_FUNCTION()
2442 add_assoc_long(return_value,"green", gdImageGreen(im,col)); in PHP_FUNCTION()
2443 add_assoc_long(return_value,"blue", gdImageBlue(im,col)); in PHP_FUNCTION()
2444 add_assoc_long(return_value,"alpha", gdImageAlpha(im,col)); in PHP_FUNCTION()
2513 zend_long x, y, col; in PHP_FUNCTION() local
2520 Z_PARAM_LONG(col) in PHP_FUNCTION()
2525 gdImageSetPixel(im, x, y, col); in PHP_FUNCTION()
2534 zend_long x1, y1, x2, y2, col; in PHP_FUNCTION() local
2543 Z_PARAM_LONG(col) in PHP_FUNCTION()
2550 gdImageSetAntiAliased(im, col); in PHP_FUNCTION()
2551 col = gdAntiAliased; in PHP_FUNCTION()
2553 gdImageLine(im, x1, y1, x2, y2, col); in PHP_FUNCTION()
2562 zend_long x1, y1, x2, y2, col; in PHP_FUNCTION() local
2571 Z_PARAM_LONG(col) in PHP_FUNCTION()
2576 gdImageDashedLine(im, x1, y1, x2, y2, col); in PHP_FUNCTION()
2585 zend_long x1, y1, x2, y2, col; in PHP_FUNCTION() local
2594 Z_PARAM_LONG(col) in PHP_FUNCTION()
2599 gdImageRectangle(im, x1, y1, x2, y2, col); in PHP_FUNCTION()
2608 zend_long x1, y1, x2, y2, col; in PHP_FUNCTION() local
2617 Z_PARAM_LONG(col) in PHP_FUNCTION()
2621 gdImageFilledRectangle(im, x1, y1, x2, y2, col); in PHP_FUNCTION()
2630 zend_long cx, cy, w, h, ST, E, col; in PHP_FUNCTION() local
2642 Z_PARAM_LONG(col) in PHP_FUNCTION()
2657 gdImageArc(im, cx, cy, w, h, st, e, col); in PHP_FUNCTION()
2689 zend_long x, y, border, col; in PHP_FUNCTION() local
2697 Z_PARAM_LONG(col) in PHP_FUNCTION()
2702 gdImageFillToBorder(im, x, y, border, col); in PHP_FUNCTION()
2711 zend_long x, y, col; in PHP_FUNCTION() local
2718 Z_PARAM_LONG(col) in PHP_FUNCTION()
2723 gdImageFill(im, x, y, col); in PHP_FUNCTION()
2805 int npoints, col, nelem, i; in php_imagepolygon() local
2830 col = COL; in php_imagepolygon()
2855 gdImageSetAntiAliased(im, col); in php_imagepolygon()
2856 col = gdAntiAliased; in php_imagepolygon()
2860 gdImageOpenPolygon(im, points, npoints, col); in php_imagepolygon()
2863 gdImagePolygon(im, points, npoints, col); in php_imagepolygon()
2866 gdImageFilledPolygon(im, points, npoints, col); in php_imagepolygon()
2986 int ch = 0, col, x, y, i, l = 0; in php_imagechar() local
3002 col = COL; in php_imagechar()
3018 gdImageChar(im, font, x, y, ch, col); in php_imagechar()
3021 php_gdimagecharup(im, font, x, y, ch, col); in php_imagechar()
3025 gdImageChar(im, font, x, y, (int) ((unsigned char) str[i]), col); in php_imagechar()
3032 gdImageCharUp(im, font, x, y, (int) str[i], col); in php_imagechar()
3337 zend_long col = -1, x = 0, y = 0; in php_imagettftext_common() local
3350 …ZEND_NUM_ARGS(), "Oddlllss|a", &IM, gd_image_ce, &ptsize, &angle, &x, &y, &col, &fontname, &fontna… in php_imagettftext_common()
3391 error = gdImageStringFTEx(im, brect, col, fontname, ptsize, angle, x, y, str, &strex); in php_imagettftext_common()
3393 error = gdImageStringFT(im, brect, col, fontname, ptsize, angle, x, y, str); in php_imagettftext_common()