<?php
Header 
("Content-type: image/png");
//領域作成
$image imagecreate(200200);
//背景色の描画(黒)
$bcolor imagecolorallocate($image000);
//png画像作成
imagepng($image);
//色リソースの開放
imagecolordeallocate ($image,$bcolor);
//画像リソースの開放
imagedestroy($image);
?>