Lines Matching refs:angle
275 ZEND_ARG_INFO(0, angle)
726 ZEND_ARG_INFO(0, angle)
735 ZEND_ARG_INFO(0, angle)
747 ZEND_ARG_INFO(0, angle)
755 ZEND_ARG_INFO(0, angle)
2070 /* {{{ proto resource imagerotate(resource src_im, float angle, int bgdcolor [, int ignoretransparent])
2071 Rotate an image using a custom angle */
3953 /* {{{ proto array imageftbbox(float size, float angle, string font_file, string text [, array extrainfo])
3961 /* {{{ proto array imagefttext(resource im, float size, float angle, int x, int y, int col, string font_file, string text [, array extrainfo])
3970 /* {{{ proto array imagettfbbox(float size, float angle, string font_file, string text)
3978 /* {{{ proto array imagettftext(resource im, float size, float angle, int x, int y, int col, string font_file, string text)
3995 double ptsize, angle;
4004 } else if (zend_parse_parameters(argc, "ddss|a", &ptsize, &angle, &fontname, &fontname_len, &str, &str_len, &EXT) == FAILURE) {
4010 } else if (zend_parse_parameters(argc, "rddlllss|a", &IM, &ptsize, &angle, &x, &y, &col, &fontname, &fontname_len, &str, &str_len, &EXT) == FAILURE) {
4018 /* convert angle to radians */
4019 angle = angle * (M_PI/180);
4051 error = gdImageStringFTEx(im, brect, col, fontname, ptsize, angle, x, y, str, &strex);
4054 error = gdImageStringFT(im, brect, col, fontname, ptsize, angle, x, y, str);
4561 Applies Filter an image using a custom angle */
5015 double angle;
5022 angle = zval_get_double(options);
5025 res = gdAffineShearHorizontal(affine, angle);
5027 res = gdAffineShearVertical(affine, angle);
5029 res = gdAffineRotate(affine, angle);