我正在尝试使这个 .php 文件充当 .png,所以我可以这样做<img src='test.php'>
[example]
我添加了一个标题作为图像并这样做:
<?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
我怎样才能解决这个问题?