This article mainly introduces the custom image centering and cropping function implemented in PHP, and analyzes PHP's related operating techniques for image acquisition, calculation, cropping, and saving in the form of examples. Friends in need can refer to it
The example of this article describes the custom image center cropping function implemented in PHP. Share it with everyone for your reference, the details are as follows:
The general idea of centering the image:
1. First, scale the image so that the scaled image can be exactly Cover the cropped area. (imagecopyresampled — resample copy part of the image and resize)
2. Place the scaled image in the middle of the cropped area. (imagecopy — copy part of an image)
3. Crop the image and save it. (imagejpeg | imagepng | imagegif - Output image to browser or file)
Specific code:
//==================缩放裁剪函数==================== /** * 居中裁剪图片 * @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为:"; echo "
"; echo "修改后图片480*480为:"; }
Running effect:
The original picture 1440*900 is:
The modified picture 480*480 is:
Similarly, for pictures of 480*320, 800*600 and other sizes, you only need to modify the corresponding parameters.
Attachment: Problems encountered during code testing
Error report:call an undefined function exif_imagetype()
Solution:
Open the extensionextension=php_exif.dll
And putextension=php_mbstring.dll
in front ofextension=php_exif.dll
Another:boolval()
Function isfunction that can be used only after versionPHP5.5 or above. The test code in this article is compatible with lower versions. Use the following statement instead:
return file_exists($target)?true:false;
Related recommendations:
Example of PHP implementation of file download function that supports Chinese
PHP implementation method of generating promotional posters
The above is the detailed content of Example of custom image center cropping function implemented in PHP [available for testing]. For more information, please follow other related articles on the PHP Chinese website!