网站建设
企业网站建设 / 品牌网站建设 / 营销型网站建设 / 响应式网站建设
修改common\incfiles\lib\jtbc\image.inc.php 文件
大概是71行,将下列代码替换
$imgs = imagecreatetruecolor($width, $height); $bgColor = imagecolorallocate($imgs, 255, 255, 255); imagefill($imgs, 0, 0, $bgColor);
替换为:
$imgs = imagecreatetruecolor($width, $height);
if ($imageType == 'jpg' || $imageType == 'jpeg' || $imageType == 'gif')
{
$bgColor = imagecolorallocate($imgs, 255, 255, 255);
imagefill($imgs, 0, 0, $bgColor);
}
else if($imageType == 'png')
{$bgColor = imagecolorallocatealpha($imgs, 255, 255, 255, 127);
imagefill($imgs, 0, 0, $bgColor);
imagesavealpha($imgs, TRUE);
}