码迷,mamicode.com
首页 > 其他好文 > 详细

用给定的角度旋转图像

时间:2015-11-24 14:22:33      阅读:119      评论:0      收藏:0      [点我收藏+]

标签:

技术分享
 1 <?php
 2     /**
 3         用给定的角度旋转图像
 4         @param string $filename     要旋转的图片名
 5         @param string $degrees         要旋转的角度
 6     */
 7     function rotate($filename,$degrees){
 8         $source = imagecreatefromjpeg($filename);
 9         //用函数imagerotate进行旋转
10         $rotate = imagerotate($source,$degrees,0);
11         
12         imagejpeg($rotate,$filename);
13     }
14     
15     rotate("mm2.jpeg",180);
16 ?>
rotate

 

用给定的角度旋转图像

标签:

原文地址:http://www.cnblogs.com/banshaohuan/p/4991259.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!