Dynamic image generation



<?php
header ("Content-type: image/png");
$im = imagecreate (200, 100) or die ("Cannot Initialize new GD image stream");
$background_color = imagecolorallocate ($im,51, 255, 204);
$text_color = imagecolorallocate ($im, 0, 0, 0);
imagestring ($im, 3, 25, 5,  "A Simple Text String", $text_color);
imagepng ($im);
?>