1314学习网 發表於 2022-10-22 01:07:15

Discuz修复PNG透明图片生成缩略图时背景变黑的BUG

解决手机版png透明图片黑底问题<br /><br />打开 source\class\class_image.php<br /><br />找到这个函数(所有修改都在这个函数内)<br /><ol><li>function Thumb_GD() {</ol>下边找到<ol><li>$copy_photo = imagecreatetruecolor($this-&gt;imginfo['width'], $this-&gt;imginfo['height']);<br /><li>imagecopy($copy_photo, $attach_photo , 0, 0, 0, 0, $this-&gt;imginfo['width'], $this-&gt;imginfo['height']);<br /><li>$attach_photo = $copy_photo;</ol>改为<br /><ol><li>if($this-&gt;imginfo['mime'] != 'image/png') {<br /><li>&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp;$copy_photo = imagecreatetruecolor($this-&gt;imginfo['width'], $this-&gt;imginfo['height']);<br /><li>&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp;imagecopy($copy_photo, $attach_photo , 0, 0, 0, 0, $this-&gt;imginfo['width'], $this-&gt;imginfo['height']);<br /><li>&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp;$attach_photo = $copy_photo;<br /><li>}</ol>找到(三处)<ol><li>$thumb_photo = imagecreatetruecolor</ol>下边添加<ol><li>if($this-&gt;imginfo['mime'] == 'image/png') {<br /><li>&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp;imagealphablending($thumb_photo, false);<br /><li>&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp;imagesavealpha($thumb_photo, true);<br /><li>}</ol><br />透明<em>, </em>图片<em>, </em>class<em>, </em>这个<em>, </em>函数

ysx24 發表於 2022-10-23 14:55:13

史诗级攻略,修复我头疼一年多的顽疾,感谢
頁: [1]
查看完整版本: Discuz修复PNG透明图片生成缩略图时背景变黑的BUG