Я пытаюсь вывести php-файл в формате jpeg.Вот код, который я получил от http://php.net/manual/en/function.imagejpeg.php
<?php
// Create a blank image and add some text
$im = imagecreatetruecolor(120, 20);
$text_color = imagecolorallocate($im, 233, 14, 91);
imagestring($im, 1, 5, 5, 'A Simple Text String', $text_color);
// Set the content type header - in this case image/jpeg
header('Content-Type: image/jpeg');
// Output the image
imagejpeg($im);
// Free up memory
imagedestroy($im);
?>
Предполагается показать простое изображение, но Xampp
, работающий на моем Mac, может показывать только черный фон, а не пример изображения.