這篇文章主要介紹了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為:
附:程式碼測試中遇到的問題
錯誤:
call an undefined function exif_imagetype()
#解決方法:開啟擴充功能extension=php_exif.dll
#extension=php_exif.dll
#並將
,放到
extension=php_exif.dll前邊另:
boolval()
PHP5.5版本以上才能使用的函數,本文測試程式碼中為相容低版本,使用如下語句取代:
return file_exists($target)?true:false;
自訂函數
判斷是否為Get、Post及Ajax提交的方法###jQuery###自訂函數###應用程式以及解析################關於php###自訂函數###及內部函數講解############################
以上是PHP自訂影像居中裁剪函數詳解的詳細內容。更多資訊請關注PHP中文網其他相關文章!