Create a new palette based image in PHP
Description
The following code shows how to create a new palette based image.
Example
//Creating a new GD image stream and outputting an image.
<?php/*from www . j av a 2s .c o m*/
header("Content-Type: image/png");
$im = @imagecreate(110, 20)
or die("Cannot Initialize new GD image stream");
$background_color = imagecolorallocate($im, 0, 0, 0);
$text_color = imagecolorallocate($im, 233, 14, 91);
imagestring($im, 1, 5, 5, "A Simple Text String", $text_color);
imagepng($im);
imagedestroy($im);
?>