[转载]解决dedecms(5.6/5.7)缩略图缩放变形问题方法

解决dedecms(5.6/5.7)缩略图缩放变形问题方法,我们知道,dedecms缩略图是自动提取,相当于原图的等比例缩放了,比如后台设置缩略图的尺码为:120*90即为3:2的图片,但是假如内容里的大图尺码为300*300即1:1,这样生成出来的图片就会变形,直接后台设置的缩
解决dedecms(5.6/5.7)缩略图缩放变形问题方法,我们知道,dedecms缩略图是自动提取,相当于原图的等比例缩放了,比如后台设置缩略图的尺码为:120*90即为3:2的图片,但是假如内容里的大图尺码为300*300即1:1,这样生成出来的图片就会变形,直接后台设置的缩略图大小不起作用啊,这样严重影响网站美观,本文介绍通过修改dedecms生成缩略源码方法解决定问题。
 
打开include/image.func.php文件,该文件在dedecms5.6/5.7中所在的目录不一样,5.6中文件在/include/下,5.7中文件在/include/helpers/
 
如果你使用的是dedecms5.7,打开目录/include/helpers/找到image.helper.php文件。
如果你使用的是dedecms5.6,打开目录/include/找到image.func.php文件。
 
dedecms5.6版image.func.php修改方法(直接替换原来方法)
 
//[2020-11-04]:解决缩略图缩放变形问题(宽度、高度为后台设置宽高)
function ImageResize($srcFile, $toW, $toH, $toFile = "") {
    global $cfg_photo_type;
    if ($toFile == "") {
        $toFile = $srcFile;
    }
    $info = "";
    $srcInfo = GetImageSize($srcFile, $info);
    switch ($srcInfo[2]) {
    case 1:
        if (!$cfg_photo_type['gif']) {
            return false;
        }
        $im = imagecreatefromgif($srcFile);
        break;
    case 2:
        if (!$cfg_photo_type['jpeg']) {
            return false;
        }
        $im = imagecreatefromjpeg($srcFile);
        break;
    case 3:
        if (!$cfg_photo_type['png']) {
            return false;
        }
        $im = imagecreatefrompng($srcFile);
        break;
    case 6:
        if (!$cfg_photo_type['bmp']) {
            return false;
        }
        $im = imagecreatefromwbmp($srcFile);
        break;
    }
    $srcW = ImageSX($im);
    $srcH = ImageSY($im);
    if ($srcW <= $toW && $srcH <= $toH) {
        return true;
    }
    //缩略生成并裁剪
    $newW = $toH * $srcW / $srcH;
    $newH = $toW * $srcH / $srcW;
    if ($newH >= $toH) {
        $ftoW = $toW;
        $ftoH = $newH;
    } else {
        $ftoW = $newW;
        $ftoH = $toH;
    }
    if ($srcW > $toW || $srcH > $toH) {
        if (function_exists("imagecreatetruecolor")) {
            @$ni = imagecreatetruecolor($ftoW, $ftoH);
            if ($ni) {
                imagecopyresampled($ni, $im, 0, 0, 0, 0, $ftoW, $ftoH, $srcW, $srcH);
            } else {
                $ni = imagecreate($ftoW, $ftoH);
                imagecopyresized($ni, $im, 0, 0, 0, 0, $ftoW, $ftoH, $srcW, $srcH);
            }
        } else {
            $ni = imagecreate($ftoW, $ftoH);
            imagecopyresized($ni, $im, 0, 0, 0, 0, $ftoW, $ftoH, $srcW, $srcH);
        }
        //裁剪图片成标准缩略图
        $new_imgx = imagecreatetruecolor($toW, $toH);
        if ($newH >= $toH) {
            imagecopyresampled($new_imgx, $ni, 0, 0, 0, ($newH - $toH) / 2, $toW, $toH, $toW, $toH);
        } else {
            imagecopyresampled($new_imgx, $ni, 0, 0, ($newW - $toW) / 2, 0, $toW, $toH, $toW, $toH);
        }
        switch ($srcInfo[2]) {
        case 1:
            imagegif($new_imgx, $toFile);
            break;
        case 2:
            imagejpeg($new_imgx, $toFile, 85);
            break;
        case 3:
            imagepng($new_imgx, $toFile);
            break;
        case 6:
            imagebmp($new_imgx, $toFile);
            break;
        default:
            return false;
        }
        imagedestroy($new_imgx);
        imagedestroy($ni);
    }
    imagedestroy($im);
    return true;
}
//[2020-11-04]:解决缩略图缩放变形问题(宽度、高度为后台设置宽高)
function ImageResize($srcFile, $toW, $toH, $toFile = "") {
    global $cfg_photo_type;
    if ($toFile == "") {
        $toFile = $srcFile;
    }
    $info = "";
    $srcInfo = GetImageSize($srcFile, $info);
    switch ($srcInfo[2]) {
    case 1:
        if (!$cfg_photo_type['gif']) {
            return false;
        }
        $im = imagecreatefromgif($srcFile);
        break;
    case 2:
        if (!$cfg_photo_type['jpeg']) {
            return false;
        }
        $im = imagecreatefromjpeg($srcFile);
        break;
    case 3:
        if (!$cfg_photo_type['png']) {
            return false;
        }
        $im = imagecreatefrompng($srcFile);
        break;
    case 6:
        if (!$cfg_photo_type['bmp']) {
            return false;
        }
        $im = imagecreatefromwbmp($srcFile);
        break;
    }
    $srcW = ImageSX($im);
    $srcH = ImageSY($im);
    if ($srcW <= $toW && $srcH <= $toH) {
        return true;
    }
    //缩略生成并裁剪
    $newW = $toH * $srcW / $srcH;
    $newH = $toW * $srcH / $srcW;
    if ($newH >= $toH) {
        $ftoW = $toW;
        $ftoH = $newH;
    } else {
        $ftoW = $newW;
        $ftoH = $toH;
    }
    if ($srcW > $toW || $srcH > $toH) {
        if (function_exists("imagecreatetruecolor")) {
@$ni = imagecreatetruecolor($ftoW, $ftoH);
            if ($ni) {
                imagecopyresampled($ni, $im, 0, 0, 0, 0, $ftoW, $ftoH, $srcW, $srcH);
            } else {
                $ni = imagecreate($ftoW, $ftoH);
                imagecopyresized($ni, $im, 0, 0, 0, 0, $ftoW, $ftoH, $srcW, $srcH);
            }
        } else {
            $ni = imagecreate($ftoW, $ftoH);
            imagecopyresized($ni, $im, 0, 0, 0, 0, $ftoW, $ftoH, $srcW, $srcH);
        }
        //裁剪图片成标准缩略图
        $new_imgx = imagecreatetruecolor($toW, $toH);
        if ($newH >= $toH) {
            imagecopyresampled($new_imgx, $ni, 0, 0, 0, ($newH - $toH) / 2, $toW, $toH, $toW, $toH);
        } else {
            imagecopyresampled($new_imgx, $ni, 0, 0, ($newW - $toW) / 2, 0, $toW, $toH, $toW, $toH);
        }
        switch ($srcInfo[2]) {
        case 1:
            imagegif($new_imgx, $toFile);
            break;
        case 2:
            imagejpeg($new_imgx, $toFile, 85);
            break;
        case 3:
            imagepng($new_imgx, $toFile);
            break;
        case 6:
            imagebmp($new_imgx, $toFile);
            break;
        default:
            return false;
        }
        imagedestroy($new_imgx);
        imagedestroy($ni);
    }
    imagedestroy($im);
    return true;
}
 
dedecms5.7版image.helper.php修改方法:
 
if (!function_exists('ImageResize')) {
    function ImageResize($srcFile, $toW, $toH, $toFile = "") {
        global $cfg_photo_type;
        if ($toFile == "") {
            $toFile = $srcFile;
        }
        $info = "";
        $srcInfo = GetImageSize($srcFile, $info);
        switch ($srcInfo[2]) {
        case 1:
            if (!$cfg_photo_type['gif']) {
                return false;
            }
            $im = imagecreatefromgif($srcFile);
            break;
        case 2:
            if (!$cfg_photo_type['jpeg']) {
                return false;
            }
            $im = imagecreatefromjpeg($srcFile);
            break;
        case 3:
            if (!$cfg_photo_type['png']) {
                return false;
            }
            $im = imagecreatefrompng($srcFile);
            break;
        case 6:
            if (!$cfg_photo_type['bmp']) {
                return false;
            }
            $im = imagecreatefromwbmp($srcFile);
            break;
        }
        $srcW = ImageSX($im);
        $srcH = ImageSY($im);
        if ($srcW <= $toW && $srcH <= $toH) {
            return true;
        }
        //缩略生成并裁剪
        $newW = $toH * $srcW / $srcH;
        $newH = $toW * $srcH / $srcW;
        if ($newH >= $toH) {
            $ftoW = $toW;
            $ftoH = $newH;
        } else {
            $ftoW = $newW;
            $ftoH = $toH;
        }
        if ($srcW > $toW || $srcH > $toH) {
            if (function_exists("imagecreatetruecolor")) {
        @$ni = imagecreatetruecolor($ftoW, $ftoH);
                if ($ni) {
                    imagecopyresampled($ni, $im, 0, 0, 0, 0, $ftoW, $ftoH, $srcW, $srcH);
                } else {
                    $ni = imagecreate($ftoW, $ftoH);
                    imagecopyresized($ni, $im, 0, 0, 0, 0, $ftoW, $ftoH, $srcW, $srcH);
                }
            } else {
                $ni = imagecreate($ftoW, $ftoH);
                imagecopyresized($ni, $im, 0, 0, 0, 0, $ftoW, $ftoH, $srcW, $srcH);
            }
            //裁剪图片成标准缩略图
            $new_imgx = imagecreatetruecolor($toW, $toH);
            if ($newH >= $toH) {
                imagecopyresampled($new_imgx, $ni, 0, 0, 0, ($newH - $toH) / 2, $toW, $toH, $toW, $toH);
            } else {
                imagecopyresampled($new_imgx, $ni, 0, 0, ($newW - $toW) / 2, 0, $toW, $toH, $toW, $toH);
            }
            switch ($srcInfo[2]) {
            case 1:
                imagegif($new_imgx, $toFile);
                break;
            case 2:
                imagejpeg($new_imgx, $toFile, 85);
                break;
            case 3:
                imagepng($new_imgx, $toFile);
                break;
            case 6:
                imagebmp($new_imgx, $toFile);
                break;
            default:
                return false;
            }
            imagedestroy($new_imgx);
            imagedestroy($ni);
        }
        imagedestroy($im);
        return true;
    }
}
本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

在用 织梦模板 时,用[field:description /]标签调取文章简介时,限制字数的方法有下面3种: 第一种方法:(推荐,可加省略号)[field:description function=cn_substr(Html2text(@me)....,80)/] 调用现成的cn_substr()字符串截取函数来实现,80为限制字节数
问题: 2个DEDE的站 怎么互相调用数据 [非JS] 是在同一个服务器,同一MYSQL账号和密码,不同数据库 请问 怎么调用? 回答: {dede:sql sql=SELECT id as tmd,title FROM `另外个站的数据库名`.`dede_archives` ORDER BY tmd desc LIMIT 0,10} lia href=https
1、打开 \dede\swfupload.php 找到 echo FILEID:.$_SESSION[fileid]; 在它的上面加入 $file_snames = explode(., $Filename);$file_filename = $file_snames[count($file_snames)-2];$_SESSION[file_filename][$_SESSION[fileid]] = $file_filename; 继续找
这些天在操作站群的时候遇到过[field:title/]这个调用标题后,标题自动加b/b这对标签,而且是每二行,或三行,或多行就出现这种情况,其它页面确是正常的。发现列表页面有出现b标签
方法如下:一:加入quot;原创文章转载自quot;quot;本文链接地址quot;代码1.打开你的博客当前主题目录下的TEMPLAT...
很多朋友知道,dedecms模板系统中,{dede:arclist/}标签里有个[field:global.autoindex/]标签。 这个标签用处可大了。它可以让arclist每生成一行文章就自动累加1。非常不错的功能。很多dedecms模板制作中,会使用这个标签。 最常见的例子,就是在dedecms官方模