時(shí)間:2019-09-24 15:18:23 點(diǎn)擊:1139 來(lái)源:易速網(wǎng)絡(luò)
修改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);
}