この.phpファイルを.pngとして機能させようとしているので、たとえば<img src='test.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です
どうすればこれを修正できますか?