解决透明GIF图片形成缩略图背景黑色问题
如果你上传的是透明的GIF图片产生的缩略图背景是黑色的,特别难看,以下是解决方法:
找到 system\core\image.php
if ($this->image_ext == 'png') { imagealphablending($dst_img, false); imagesavealpha($dst_img, true); } 增加 if ($this->image_ext == 'gif') { $color = imagecolorAllocate($dst_img, 255, 255, 255); imagefill($dst_img, 0, 0, $color); }
2016-09-20 10:35
2016-09-19 13:44
2016-09-19 10:16