在圖像文件夾中我有這是爲什麼創建一個黑色的圖像?
<?php
header('Content-type: image/png');
$im = imagecreatefrompng('simnotfound.png');
imagepng($im);
imagedestroy($im);
?>
一個notfound.php文件中的圖像是256×256。notfound.php頁顯示一個黑色256通過256平方。圖像並不全是黑色的。它只是在中心透明背景上的一些黑色文字。
解決方法是
<?php
header('Content-type: image/png');
$im = imagecreatefrompng('simnotfound.png');
imagealphablending($im, true); // setting alpha blending on
imagesavealpha($im, true); // save alphablending setting (important)
imagepng($im);
imagedestroy($im);
?>
如果它是透明的,你期待背景顏色顯示爲?你測試過哪些瀏覽器?我們可以得到一個網址嗎? – 2011-03-13 04:07:22
'simnotfound.png'的內容? – 2011-03-13 04:10:27
Nvm找到了解決辦法。 imagealphablending和imagesavealpha – Keverw 2011-03-13 04:11:38