怎么使用php代码实现图片旋转方向
这篇文章主要讲解了“怎么使用php代码实现图片旋转方向”,文中的讲解内容简单清晰,易于学习与理解,下面请大家跟着小编的思路慢慢深入,一起来研究和学习“怎么使用php代码实现图片旋转方向”吧!
php实现图片旋转方向的代码方法是:1、创建一个php示例文件;2、通过“public static function base64Rotate($image, $rotate = '90', $savePath = false){...}”方法设置base64图片旋转;3、通过“imageRotate”方法设置本地图片旋转即可。
php实现图片旋转
最近有一个需求需要将前端上传过来的图片进行逆时针旋转90°,这个主要需要使用到php的imagerotate方法对于图片进行旋转,具体实现方法如下:
<?php namespace common\traits; use Yii;use yii\helpers\FileHelper; class ImageRotate{ public static function base64Rotate($image, $rotate = '90', $savePath = false) { if (empty($image)) { return false; } if (preg_match('/^(data:\s*image\/(\w+);base64,)/', $image, $result)) { $type = $result[2]; //设置临时目录 $temporaryPath = '/tmp/'; $temporaryPath = dirname(Yii::getAlias('@common')) . '/web' . $temporaryPath; FileHelper::createDirectory($temporaryPath); //将原图保存到零食目录 $temporaryImage = date('YmdHis') . rand(1000, 9999) . '.' . $type; if (file_put_contents($temporaryPath . $temporaryImage, base64_decode(str_replace($result[1], '', $image)))) { $newImage = self::rotateImage($temporaryPath . $temporaryImage, $rotate); //旋转图片 //删除临时文件 @unlink($temporaryPath . $temporaryImage); ob_start(); if ($savePath === false) { //返回base imagepng($newImage); $imageString = $result[1] . base64_encode(ob_get_contents()); @unlink($newImage); } else { $imageString = imagepng($newImage, $savePath); } ob_end_clean(); return $imageString; } } return false; } public static function imageRotate($image, $rotate = '90', $savePath = false) { if (empty($image)) { return false; } //旋转图片 $newImage = self::rotateImage($image, $rotate); ob_start(); if ($savePath === false) { //替换原图 $url = $image; } else { $url = $savePath; } $imageString = imagepng($newImage, $url); ob_end_clean(); return $imageString; } private static function rotateImage($file, $rotate) { $imageSize = getimagesize($file); $imageSize = explode('/', $imageSize['mime']); $type = $imageSize[1]; switch ($type) { case "png": $image = imagecreatefrompng($file); break; case "jpeg": $image = imagecreatefromjpeg($file); break; case "jpg": $image = imagecreatefromjpeg($file); break; case "gif": $image = imagecreatefromgif($file); break; } $rotateImage = imagerotate($image, $rotate, 0); //逆时针旋转 //获取旋转后的宽高 $class="lazy" data-srcWidth = imagesx($rotateImage); $class="lazy" data-srcHeight = imagesy($rotateImage); //创建新图 $newImage = imagecreatetruecolor($class="lazy" data-srcWidth, $class="lazy" data-srcHeight); //分配颜色 + alpha,将颜色填充到新图上 $alpha = imagecolorallocatealpha($newImage, 0, 0, 0, 127); imagefill($newImage, 0, 0, $alpha); //将源图拷贝到新图上,并设置在保存 PNG 图像时保存完整的 alpha 通道信息 imagecopyresampled($newImage, $rotateImage, 0, 0, 0, 0, $class="lazy" data-srcWidth, $class="lazy" data-srcHeight, $class="lazy" data-srcWidth, $class="lazy" data-srcHeight); imagesavealpha($newImage, true); return $newImage; } }
具体使用:
base64图片旋转并输出base64
ImageRotate::base64Rotate('base64图片', '旋转角度');
base64图片旋转并保存
ImageRotate::base64Rotate('base64图片', '旋转角度', '保存地址');
本地图片旋转
ImageRotate::imageRotate('本地图片地址', '旋转角度', '保存地址');
根据上面的方法我们就可以实现图片的旋转功能了
php是什么语言
php,一个嵌套的缩写名称,是英文超级文本预处理语言(PHP:Hypertext Preprocessor)的缩写。PHP 是一种 HTML 内嵌式的语言,PHP与微软的ASP颇有几分相似,都是一种在服务器端执行的嵌入HTML文档的脚本语言,语言的风格有类似于C语言,现在被很多的网站编程人员广泛的运用。
感谢各位的阅读,以上就是“怎么使用php代码实现图片旋转方向”的内容了,经过本文的学习后,相信大家对怎么使用php代码实现图片旋转方向这一问题有了更深刻的体会,具体使用情况还需要大家实践验证。这里是编程网,小编将为大家推送更多相关知识点的文章,欢迎关注!
免责声明:
① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。
② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341