Pbotcms缩略图剪裁优化中间剪裁(直接上干货)

Pbotcms缩略图剪裁优化中间剪裁(直接上干货)
Pbootcms模板模板默认图片剪裁从左上角开始,使用width,height,maxwidth,maxheight等待调整参数。
 
但是剪出来的图片总觉得不那么令人满意。(也许我不会用)
 
比如多人合影,PB默认裁剪是左上角,那么这个裁剪就会失去C位,那怎么行呢?
 
今天,让我们优化一下切割图片,让他简单快捷地切割出理想的图片。
 
我想要的效果是,无论是横图还是垂直图片,都是在中间切割的。
 
翠花,上干货!
 
解决方案
 
首先,找出切割缩略图的方法,
 
文件位置:/core/function/file.php
 
搜索:function cut_img,大约在447行
 
优化cut_img方法,直接上代码:

// 剪切图片
function cut_img($src_image, $out_image = null, int $new_width = null, int $new_height = null, $img_quality = 90)
{
    // 输出地址
    if (! $out_image)
        $out_image = $src_image;
    
    // 阅读配置文件设置
    if (! $new_width && ! $new_height)
        return;
    
    // 获取图片属性
    list ($width, $height, $type, $attr) = getimagesize($src_image);
    switch ($type) {
        case 1:
            $img = imagecreatefromgif($src_image);
            break;
        case 2:
            $img = imagecreatefromjpeg($src_image);
            break;
        case 3:
            $img = imagecreatefrompng($src_image);
            break;
    }
    
    // 不限于等比缩放
    if (! $new_width) {
        $new_width = floor($width * ($new_height / $height));
    }
    if (! $new_height) {
        $new_height = floor($height * ($new_width / $width));
    }
    // 创建画布
    $new_img = imagecreatetruecolor($new_width, $new_height);
    
    // 创建透明画布,避免黑色
    if ($type == 1