Lines Matching refs:angle

272 	ZEND_ARG_INFO(0, angle)
723 ZEND_ARG_INFO(0, angle)
732 ZEND_ARG_INFO(0, angle)
744 ZEND_ARG_INFO(0, angle)
752 ZEND_ARG_INFO(0, angle)
2064 /* {{{ proto resource imagerotate(resource src_im, float angle, int bgdcolor [, int ignoretransparent])
2065 Rotate an image using a custom angle */
3950 /* {{{ proto array imageftbbox(float size, float angle, string font_file, string text [, array extrainfo])
3958 /* {{{ proto array imagefttext(resource im, float size, float angle, int x, int y, int col, string font_file, string text [, array extrainfo])
3967 /* {{{ proto array imagettfbbox(float size, float angle, string font_file, string text)
3975 /* {{{ proto array imagettftext(resource im, float size, float angle, int x, int y, int col, string font_file, string text)
3992 double ptsize, angle;
4001 } else if (zend_parse_parameters(argc, "ddss|a", &ptsize, &angle, &fontname, &fontname_len, &str, &str_len, &EXT) == FAILURE) {
4007 } else if (zend_parse_parameters(argc, "rddlllss|a", &IM, &ptsize, &angle, &x, &y, &col, &fontname, &fontname_len, &str, &str_len, &EXT) == FAILURE) {
4015 /* convert angle to radians */
4016 angle = angle * (M_PI/180);
4048 error = gdImageStringFTEx(im, brect, col, fontname, ptsize, angle, x, y, str, &strex);
4051 error = gdImageStringFT(im, brect, col, fontname, ptsize, angle, x, y, str);
4485 Applies Filter an image using a custom angle */
4939 double angle;
4946 angle = zval_get_double(options);
4949 res = gdAffineShearHorizontal(affine, angle);
4951 res = gdAffineShearVertical(affine, angle);
4953 res = gdAffineRotate(affine, angle);