中文字幕一区有码视三区-日本一区二区三区精品视-亚洲毛片18禁在线看-国产欧美亚洲91在线

18038435860

jtbc 3.0修復(fù)png圖片上傳后背景變?yōu)榘咨膯栴}

時間:2019-09-24 15:18:23 點擊:1215 來源:易速網(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);
			}