這篇文章主要介紹了PHP實現的自訂映像置中裁剪函數,結合執行個體形式分析了php針對圖片的擷取、計算、裁剪、儲存等相關操作技巧,需要的朋友可以參考下
本文執行個體講述了PHP實現的自訂映像置中裁剪函數。分享給大家供大家參考,具體如下:
映像置中裁減的大致思路:
1.首先將映像進行縮放,使得縮放後的映像能夠恰好覆蓋裁減地區。(imagecopyresampled — 重採樣拷貝部分映像並調整大小)
2.將縮放後的映像放置在裁減地區中間。(imagecopy — 拷貝映像的一部分)
3.裁減映像並儲存。(imagejpeg | imagepng | imagegif — 輸出圖象到瀏覽器或檔案)
具體代碼:
//==================縮放裁剪函數====================/** * 置中裁剪圖片 * @param string $source [原圖路徑] * @param int $width [設定寬度] * @param int $height [設定高度] * @param string $target [目標路徑] * @return bool [裁剪結果] */function image_center_crop($source, $width, $height, $target){ if (!file_exists($source)) return false; /* 根據類型載入映像 */ switch (exif_imagetype($source)) { case IMAGETYPE_JPEG: $image = imagecreatefromjpeg($source); break; case IMAGETYPE_PNG: $image = imagecreatefrompng($source); break; case IMAGETYPE_GIF: $image = imagecreatefromgif($source); break; } if (!isset($image)) return false; /* 擷取映像尺寸資訊 */ $target_w = $width; $target_h = $height; $source_w = imagesx($image); $source_h = imagesy($image); /* 計算裁剪寬度和高度 */ $judge = (($source_w / $source_h) > ($target_w / $target_h)); $resize_w = $judge ? ($source_w * $target_h) / $source_h : $target_w; $resize_h = !$judge ? ($source_h * $target_w) / $source_w : $target_h; $start_x = $judge ? ($resize_w - $target_w) / 2 : 0; $start_y = !$judge ? ($resize_h - $target_h) / 2 : 0; /* 繪製置中縮放映像 */ $resize_img = imagecreatetruecolor($resize_w, $resize_h); imagecopyresampled($resize_img, $image, 0, 0, 0, 0, $resize_w, $resize_h, $source_w, $source_h); $target_img = imagecreatetruecolor($target_w, $target_h); imagecopy($target_img, $resize_img, 0, 0, $start_x, $start_y, $resize_w, $resize_h); /* 將圖片儲存至檔案 */ if (!file_exists(dirname($target))) mkdir(dirname($target), 0777, true); switch (exif_imagetype($source)) { case IMAGETYPE_JPEG: imagejpeg($target_img, $target); break; case IMAGETYPE_PNG: imagepng($target_img, $target); break; case IMAGETYPE_GIF: imagegif($target_img, $target); break; }// return boolval(file_exists($target));//PHP5.5以上可用boolval()函數擷取返回的布爾值 return file_exists($target)?true:false;//相容低版本PHP寫法}
//==================函數使用方式====================// 原始圖片的路徑$source = '../source/img/middle.jpg';$width = 480; // 裁剪後的寬度$height = 480;// 裁剪後的高度// 裁剪後的圖片存放目錄$target = '../source/temp/resize.jpg';// 裁剪後儲存到目標檔案夾if (image_center_crop($source, $width, $height, $target)) { echo "原圖1440*900為:<img src='$source'>"; echo "<hr>"; echo "修改後圖片480*480為:<img src='$target'>";}
運行效果:
原圖1440*900為:
修改後圖片480*480為:
同理,480*320,、800*600等尺寸的圖片只需修改相應參數即可。
附:代碼測試中遇到的問題
報錯:call an undefined function exif_imagetype()
解決方案:
開啟擴充 extension=php_exif.dll
並將extension=php_mbstring.dll ,放到extension=php_exif.dll前邊
另:boolval()函數為PHP5.5版本以上才能使用的函數,本文測試代碼中為相容低版本,使用如下語句代替:
return file_exists($target)?true:false;