Lines Matching refs:angle
1226 /* {{{ Rotate an image using a custom angle */
3340 double ptsize, angle;
3346 if (zend_parse_parameters(ZEND_NUM_ARGS(), "ddss|a", &ptsize, &angle, &fontname, &fontname_len, &str, &str_len, &EXT) == FAILURE) {
3350 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) {
3356 /* convert angle to radians */
3357 angle = angle * (M_PI/180);
3391 error = gdImageStringFTEx(im, brect, col, fontname, ptsize, angle, x, y, str, &strex);
3393 error = gdImageStringFT(im, brect, col, fontname, ptsize, angle, x, y, str);
3664 /* {{{ Applies Filter an image using a custom angle */
4138 double angle;
4140 angle = zval_get_double(options);
4143 res = gdAffineShearHorizontal(affine, angle);
4145 res = gdAffineShearVertical(affine, angle);
4147 res = gdAffineRotate(affine, angle);