php實現圖片旋轉方向的程式碼方法是:1、建立一個php範例檔案;2、通過「public static function base64Rotate($image, $rotate = '90', $savePath = false){...}」方法設定base64圖片旋轉;3、通過「imageRotate」方法設定本地圖片旋轉即可。
php入門到就業線上直播課:進入學習
Apipost = Postman + Swagger + Mock + Jmeter 超好用的API偵錯工具:
本教學操作環境:windows7系統、PHP8.1版、Dell G3電腦。
php圖片旋轉方向程式碼是什麼?
php實現圖片旋轉
最近有一個需求需要將前端上傳過來的圖片進行逆時針旋轉90°,這個主要需要使用到php的imagerotate方法對於圖片進行旋轉,具體實現方法如下:
<?php
namespace common\traits;
use Yii;
use yii\helpers\FileHelper;
/**
* 圖片旋轉處理trait
*
* @author wangjian
* @since 1.0
*/
class ImageRotate
{
/**
* base64圖片旋轉
* @param $image 需要旋轉的base64圖片
* @param string $rotate 逆時針旋轉角度
* @param false $savePath 儲存的圖片路徑,false返回base64格式
*/
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;
}
/**
* 本地圖片旋轉
* @param $image 需要旋轉的本地圖片
* @param string $rotate 逆時針旋轉角度
* @param false $savePath 儲存的圖片路徑,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;
}
/**
* @param $file 需要旋轉的圖片
* @param $rotate 逆時針旋轉角度
*/
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); //逆時針旋轉
//獲取旋轉後的寬高
$srcWidth = imagesx($rotateImage);
$srcHeight = imagesy($rotateImage);
//建立新圖
$newImage = imagecreatetruecolor($srcWidth, $srcHeight);
//分配顏色 + alpha,將顏色填充到新圖上
$alpha = imagecolorallocatealpha($newImage, 0, 0, 0, 127);
imagefill($newImage, 0, 0, $alpha);
//將源圖拷貝到新圖上,並設定在儲存 PNG 影象時儲存完整的 alpha 通道資訊
imagecopyresampled($newImage, $rotateImage, 0, 0, 0, 0, $srcWidth, $srcHeight, $srcWidth, $srcHeight);
imagesavealpha($newImage, true);
return $newImage;
}
}
登入後複製
具體使用:
1:base64圖片旋轉並輸出base64
ImageRotate::base64Rotate('base64圖片', '旋轉角度');
登入後複製
2:base64圖片旋轉並儲存
ImageRotate::base64Rotate('base64圖片', '旋轉角度', '儲存地址');
3:本地圖片旋轉
ImageRotate::imageRotate('本地圖片地址', '旋轉角度', '儲存地址');
登入後複製
根據上面的方法我們就可以實現圖片的旋轉功能了
推薦學習:《》
以上就是php圖片旋轉方向程式碼是什麼的詳細內容,更多請關注TW511.COM其它相關文章!