97久久国产亚洲精品超碰热,成人又色又爽的免费网站,色偷偷女人的天堂a,男女高潮喷水在线观看,国内精品一线二线三线区别在哪里

返回列表 發(fā)帖
查看: 2293|回復(fù): 1

Discuz修復(fù)PNG透明圖片生成縮略圖時(shí)背景變黑的BUG

17

主題

590

回帖

1854

積分

應(yīng)用開發(fā)者

貢獻(xiàn)
66 點(diǎn)
金幣
902 個(gè)
QQ
樓主
發(fā)表于 2022-10-22 01:07:15 | 只看樓主 |倒序?yàn)g覽 |閱讀模式
解決手機(jī)版png透明圖片黑底問題

打開 source\class\class_image.php

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

329

主題

1399

回帖

1929

積分

已臻大成

貢獻(xiàn)
14 點(diǎn)
金幣
8 個(gè)
沙發(fā)
發(fā)表于 2022-10-23 14:55:13 來自手機(jī) | 只看Ta
史詩級(jí)攻略,修復(fù)我頭疼一年多的頑疾,感謝

本版積分規(guī)則

  • 關(guān)注公眾號(hào)
  • 有償服務(wù)微信
  • 有償服務(wù)QQ

手機(jī)版|小黑屋|Discuz! 官方交流社區(qū) ( 皖I(lǐng)CP備16010102號(hào) |皖公網(wǎng)安備34010302002376號(hào) )|網(wǎng)站地圖|star

GMT+8, 2025-10-16 14:29 , Processed in 0.040493 second(s), 8 queries , Redis On.

Powered by Discuz! X5.0 Licensed

© 2001-2025 Discuz! Team.

關(guān)燈 在本版發(fā)帖
有償服務(wù)QQ
有償服務(wù)微信
返回頂部
快速回復(fù) 返回頂部 返回列表