0

我正在尝试使这个 .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

我怎样才能解决这个问题?

4

1 回答 1

0

imagepng($image, "test.png");如果要将图像保存到文件中,为什么希望将其输出到浏览器?如果要直接输出,只需使用imagepng($image);

此外,标头调用需要在输出任何内容之前进行。

于 2012-10-21T04:50:59.927 回答