Ich verwende xampp und dabei die Version PHP7.0.6
Das unten stehende Programm soll eine graue Fläche und den Text "hallo" ausgeben. Es kommt immer die Fehlermeldung "Die Grafik "http//localhost/Programme/im_intern.php" kann nicht angezeigt werden, weil sie Fehler enthält. Woran liegt es bitte?

Mein PC:
Betriebssystem Windows 7 Professional, Service Pack 1 64-Bit
Prozessor: Intel (R) Pentium (R) CPU B960 2,20 GHz
Arbeitsspeicher: 4 GB
Browser: Firefox 52.0.1 32-Bit

Hier das Programm:

<?php
$im = imagecreate(150,100);
$grau = imagecolorallocate($im, 192, 192, 192);
imagefill ($im, 0, 0, $grau);

$schwarz = imagecolorallocate($im, 0, 0, 0);
imagestring($im, 5, 0, 0, "hallo", $schwarz);

header("Content-Type: image/jpeg");
imagejpeg($im);
imagedestroy($im);
?>