我使用 php 和 heroku 为我的 facebook 应用程序创建了一些图像,但是没有显示图像,只显示了损坏图像的图片。我使用来自 php 教程网站的示例代码。
<?php
// Create a 100*30 image
$im = imagecreate(100, 30);
// White background and blue text
$bg = imagecolorallocate($im, 255, 255, 255);
$textcolor = imagecolorallocate($im, 0, 0, 255);
// Write the string at the top left
imagestring($im, 5, 0, 0, 'Hello world!', $textcolor);
// Output the image
header('Content-type: image/png');
imagepng($im);
imagedestroy($im);
?>
代码位于 /src/texttopic.php Heroku 日志中没有显示错误。