<?php
header("content-type: image/png");
$im = @ImageCreate(150, 150) or die("Could not create image");
$bg_color = ImageColorAllocate($im, 240, 240, 240);
$text_color = ImageColorAllocate($im, 0, 0, 0);
ImageRectangle($im, 40, 40, 140, 140, $text_color);
ImageString($im, 3, 5, 5, "Square", $text_color);
ImagePng($im);
ImageDestroy($im);
?>
Why it doesn't run?
Please check at:
http://www.phucuong.net/testPNG.php
Help me!