上传png图片背景不透明解决方法
将topthink/think-image/src/Image.php文件thumb()、crop()方法中的
imagecolorallocate改为imagecolorallocatealpha,可根据上传图片类型格式加判断。
// 调整默认颜色
if($this->info['type']=='png'){
$color = imagecolorallocatealpha($img, 0, 0, 0,127);
}
else{
$color = imagecolorallocate($img, 255, 255, 255);
}