PbootCms缩略图裁剪优化居中裁剪(直接上干货)

PbootCms模板默认的图片裁剪是从左上角开始裁剪,使用width,height,maxwidth,maxheight等参数进行调节。
但是裁剪出来的图片始终感觉不是那么令人满意。(也许是我不会用)
比如多人物合影,PB默认的裁剪是左上,那么这个裁剪就会丢掉C位,那怎么能行。
今天来优化一下裁剪图片,让他能简单快捷的裁剪出理想的图片。
我想要的效果是不论横图竖图都是居中裁剪。
翠花,上干货!
解决方案
首先找到裁剪缩略图的方法,
文件位置:/core/function/file.php
搜索:function cut_img,大约在447行

对cut_img方法进行优化,直接上代码:


  1. // 剪切图片
  2. function cut_img($src_image, $out_image = null, int $new_width = null, int $new_height = null, $img_quality = 90)
  3. {
  4. // 输出地址
  5. if (! $out_image)
  6. $out_image = $src_image;
  7. // 读取配置文件设置
  8. if (! $new_width && ! $new_height)
  9. return;
  10. // 获取图片属性
  11. list ($width, $height, $type, $attr) = getimagesize($src_image);
  12. switch ($type) {
  13. case 1:
  14. $img = imagecreatefromgif($src_image);
  15. break;
  16. case 2:
  17. $img = imagecreatefromjpeg($src_image);
  18. break;
  19. case 3:
  20. $img = imagecreatefrompng($src_image);
  21. break;
  22. }
  23. // 不限定是等比例缩放
  24. if (! $new_width) {
  25. $new_width = floor($width * ($new_height / $height));
  26. }
  27. if (! $new_height) {
  28. $new_height = floor($height * ($new_width / $width));
  29. }
  30. // 创建画布
  31. $new_img = imagecreatetruecolor($new_width, $new_height);
  32. // 创建透明画布,避免黑色
  33. if ($type == 1 || $type == 3) {
  34. $color = imagecolorallocate($new_img, 255, 255, 255);
  35. imagefill($new_img, 0, 0, $color);
  36. imagecolortransparent($new_img, $color);
  37. }
  38. // 先缩放
  39. $scale = max($new_width / $width, $new_height / $height);
  40. $scale_width = floor($scale * $width);
  41. $scale_height = floor($scale * $height);
  42. $scale_img = imagecreatetruecolor($scale_width, $scale_height); // 创建画布
  43. if(function_exists("ImageCopyResampled")) {
  44. imagecopyresampled($scale_img, $img, 0, 0, 0, 0, $scale_width, $scale_height, $width, $height);
  45. } else {
  46. imagecopyresized($scale_img, $img, 0, 0, 0, 0, $scale_width, $scale_height, $width, $height);
  47. }
  48. //再裁剪
  49. $start_x = ($scale_width - $new_width) / 2;
  50. $start_y = ($scale_height - $new_height) / 2;
  51. //拷贝剪切的图像数据到画板,生成剪切图像
  52. imagecopy($new_img, $scale_img, 0, 0, $start_x, $start_y, $scale_width, $scale_height);
  53. check_dir(dirname($out_image), true); // 检查输出目录
  54. switch ($type) {
  55. case 1:
  56. imagegif($new_img, $out_image, $img_quality);
  57. break;
  58. case 2:
  59. imagejpeg($new_img, $out_image, $img_quality);
  60. break;
  61. case 3:
  62. imagepng($new_img, $out_image, $img_quality / 10); // $quality参数取值范围0-99 在php 5.1.2之后变更为0-9
  63. break;
  64. default:
  65. imagejpeg($new_img, $out_image, $img_quality);
  66. }
  67. imagedestroy($new_img);
  68. imagedestroy($img);
  69. return true;
  70. }

举个例子:列表中输出图片



  1. {pboot:list scode=*}
  2. <a href= "[list:link]"><img src="[list:ico width=600 height=400]" />a>
  • {/pboot:list}
  • 如上代码,直接生成600*400像素的居中裁剪过的图片。
    收工。


加载中~