完美解决DEDE程序首页图片显示不清晰
完美解决DEDE程序首页图片显示不清晰
一、打开设置:系统-附件设置,把系统默认宽度和高度设为大于我们全站调用缩略图的最大尺寸。(如图:)

二、打开 include/extend.func.php,在最后一个?>前加入代码:

二、打开 include/extend.func.php,在最后一个?>前加入代码:
function thumb($imgurl, $width, $height, $bg = true)
{
global $cfg_mainsite,$cfg_multi_site;
$thumb = eregi("http://",$imgurl)?str_replace($cfg_mainsite,'',$imgurl):$imgurl;
list($thumbname,$extname) = explode('.',$thumb);
$newthumb = $thumbname.'_'.$width.'_'.$height.'.'.$extname;
if(!$thumbname || !$extname || !file_exists(DEDEROOT.$thumb)) return $imgurl;
if(!file_exists(DEDEROOT.$newthumb))
{
include_once DEDEINC.'/image.func.php';
if($bg==true)
{
ImageResizeNew(DEDEROOT.$thumb, $width, $height, DEDEROOT.$newthumb);
}
else
{
ImageResize(DEDEROOT.$thumb, $width, $height, DEDEROOT.$newthumb);
}
}
return $cfg_multi_site=='Y'?$cfg_mainsite.$newthumb:$newthumb;
}
http://www.itemperor.com/a/wangye/CMS/276.html原文链接:http://www.jxszl.com/biancheng/dedecms/447241.html