打開 source\class\class_image.php
找到這個(gè)函數(shù)(所有修改都在這個(gè)函數(shù)內(nèi))
下邊找到
- $copy_photo = imagecreatetruecolor($this->imginfo['width'], $this->imginfo['height']);
- imagecopy($copy_photo, $attach_photo , 0, 0, 0, 0, $this->imginfo['width'], $this->imginfo['height']);
- $attach_photo = $copy_photo;
復(fù)制代碼改為
- if($this->imginfo['mime'] != 'image/png') {
- $copy_photo = imagecreatetruecolor($this->imginfo['width'], $this->imginfo['height']);
- imagecopy($copy_photo, $attach_photo , 0, 0, 0, 0, $this->imginfo['width'], $this->imginfo['height']);
- $attach_photo = $copy_photo;
- }
復(fù)制代碼找到(三處)
- $thumb_photo = imagecreatetruecolor
復(fù)制代碼下邊添加
- if($this->imginfo['mime'] == 'image/png') {
- imagealphablending($thumb_photo, false);
- imagesavealpha($thumb_photo, true);
- }
復(fù)制代碼