?>
--FILE--
<?php
-echo "Alive\n";
+echo "Alive: create image\n";
$width = 50;
$height = 100;
$ImHandle = imagecreate($width,$height);
-echo "Alive\n";
-//Define colors
+
+echo "Alive: Define colors\n";
$MyBlue = imagecolorAllocate($ImHandle, 0, 0, 255);
$MyRed = imagecolorAllocate($ImHandle, 255, 0, 0);
$MyWhite = imagecolorAllocate($ImHandle, 255, 255, 255);
$MyBlack = imagecolorAllocate($ImHandle, 0, 0, 0);
-echo "Alive\n";
-//Draw
+
+echo "Alive: Draw\n";
ImageFill($ImHandle,0,0,$MyBlack);
ImageLine($ImHandle,20,20,180,20,$MyWhite);
ImageLine($ImHandle,20,20,20,70,$MyBlue);
ImageFill($ImHandle,21,45,$MyBlue);
ImageFill($ImHandle,100,69,$MyRed);
ImageFill($ImHandle,100,21,$MyWhite);
+
+echo "Alive: ImageString\n";
ImageString($ImHandle,4,40,75,"Czech Republic",$MyWhite);
-echo "Alive\n";
-// Send to browser
-Header("Content-type: image/PNG");
+
+echo "Alive: Send to browser\n";
+//Header("Content-type: image/PNG");
//ImagePNG($ImHandle);
-echo "Alive\n";
-//Free resources
+
+echo "Alive: Free resources\n";
imagedestroy($ImHandle);
-echo "Alive\n";
+echo "Alive: Done\n";
?>
--EXPECT--
-Alive
-Alive
-Alive
-Alive
-Alive
-Alive
+Alive: create image
+Alive: Define colors
+Alive: Draw
+Alive: ImageString
+Alive: Send to browser
+Alive: Free resources
+Alive: Done