如果原始图片不是工整的比例,那ECSHOP缩略图就有留空白问题,不能饱满的在首页和列表页面展示。于是寻找各种解决方法,如下。
在includes/cls_image.php文件中(419行位置)
修改为:
> {
> $lessen_width = $thumb_height * $scale_org;
> $lessen_height = $thumb_height;
> }
> else
> {
> / 原始图片比较高,则以高度为准 /
> $lessen_width = $thumb_width;
> $lessen_height = $thumb_width / $scale_org;
> }

这样我们根据后台设置的图片比例大小就可以自动的饱满的完成ECSHOP缩略图效果。