create a png

This example shows how to create a basic png

<html>
<body>
<?php
$img = imagecreate(400,200);
$red = imagecolorallocate($img,255,0,0);
Imagerectangle($img,50,50,150,150,$red);
ImagePNG($img,"pic.png");
ImageDestroy($img);
?>
<img src="pic.png" />
</body>
</html>