Lines Matching refs:angle
1335 /* {{{ Rotate an image using a custom angle */
3219 double ptsize, angle;
3225 if (zend_parse_parameters(ZEND_NUM_ARGS(), "ddss|a", &ptsize, &angle, &fontname, &fontname_len, &str, &str_len, &EXT) == FAILURE) {
3229 if (zend_parse_parameters(ZEND_NUM_ARGS(), "Oddlllss|a", &IM, gd_image_ce, &ptsize, &angle, &x, &y, &col, &fontname, &fontname_len, &str, &str_len, &EXT) == FAILURE) {
3235 /* convert angle to radians */
3236 angle = angle * (M_PI/180);
3267 error = gdImageStringFTEx(im, brect, col, fontname, ptsize, angle, x, y, str, &strex);
3269 error = gdImageStringFT(im, brect, col, fontname, ptsize, angle, x, y, str);
3509 /* {{{ Applies Filter an image using a custom angle */
3939 double angle;
3941 angle = zval_get_double(options);
3944 res = gdAffineShearHorizontal(affine, angle);
3946 res = gdAffineShearVertical(affine, angle);
3948 res = gdAffineRotate(affine, angle);