我想讓這個.php文件像一個.png文件一樣,所以我可以做例如<img src='test.php'>
[示例]PHP圖像不能正常工作
我添加的報頭作爲圖像和這樣做:
<?php
/* Start Connection */
[Ignore This]
/* End Connection */
/* Add to counter */
mysql_query("UPDATE counter SET counter = counter + 1");
/* End Add */
/* For Echo */
$count = mysql_fetch_row(mysql_query("SELECT counter FROM counter"));
$hits = $count[0];
/* Create Echo as Null
* @echo
echo "$hits";
*/
/* End Echo */
//Img Area
$font = "font.ttf";
$image = imagecreatefrompng("hits.png");
$color = imagecolorallocate($image, 255, 255, 255);
imagettftext($image, 15, 0, 10, 24, $color, $font, $hits);
imagepng($image, "test.png");
imagedestroy($image);
header('Content-Type: image/png')
?>
但它只是顯示一個斷開的圖像。
這個文件是img.php
破碎的形象是img.php
我怎樣才能解決這個問題?
值得一提的是,應該在新代碼中避免使用mysql_ *,以支持PDO或MySQLi。 – Corbin