<?php
Header 
("Content-type: image/png");

//領域作成
$image imagecreate(200200);
//背景色の描画(白)
$bcolor imagecolorallocate($image255255255);
//色の作成(青)
$blue imagecolorallocate($image00255);
//色の作成(緑)
$green imagecolorallocate($image02550);

//四角を描く
imagefilledrectangle($image,50,50,100,100,$blue);
//丸を描く
imagefilledellipse($image,150,150,50,50,$green);

//png画像作成
imagepng($image);
//色リソースの開放
imagecolordeallocate ($image,$bcolor);
imagecolordeallocate ($image,$blue);
imagecolordeallocate ($image,$green);
//画像リソースの開放
imagedestroy($image);
?>