Lines Matching refs:angle

277 	ZEND_ARG_INFO(0, angle)
695 ZEND_ARG_INFO(0, angle)
704 ZEND_ARG_INFO(0, angle)
716 ZEND_ARG_INFO(0, angle)
724 ZEND_ARG_INFO(0, angle)
2033 /* {{{ proto resource imagerotate(resource src_im, float angle, int bgdcolor [, int ignoretransparent])
2034 Rotate an image using a custom angle */
3823 /* {{{ proto array imageftbbox(float size, float angle, string font_file, string text [, array extrainfo])
3831 /* {{{ proto array imagefttext(resource im, float size, float angle, int x, int y, int col, string font_file, string text [, array extrainfo])
3840 /* {{{ proto array imagettfbbox(float size, float angle, string font_file, string text)
3848 /* {{{ proto array imagettftext(resource im, float size, float angle, int x, int y, int col, string font_file, string text)
3865 double ptsize, angle;
3874 } else if (zend_parse_parameters(argc, "ddss|a", &ptsize, &angle, &fontname, &fontname_len, &str, &str_len, &EXT) == FAILURE) {
3880 } else if (zend_parse_parameters(argc, "rddlllss|a", &IM, &ptsize, &angle, &x, &y, &col, &fontname, &fontname_len, &str, &str_len, &EXT) == FAILURE) {
3888 /* convert angle to radians */
3889 angle = angle * (M_PI/180);
3921 error = gdImageStringFTEx(im, brect, col, fontname, ptsize, angle, x, y, str, &strex);
3924 error = gdImageStringFT(im, brect, col, fontname, ptsize, angle, x, y, str);
4437 Applies Filter an image using a custom angle */
4889 double angle;
4896 angle = zval_get_double(options);
4899 res = gdAffineShearHorizontal(affine, angle);
4901 res = gdAffineShearVertical(affine, angle);
4903 res = gdAffineRotate(affine, angle);