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

//領域作成
$image imagecreate(200200);
//背景色の描画(赤)
$bcolor imagecolorallocate($image25500);
//色の作成(白)
$fcolor imagecolorallocate($image255255255);
//線を引く
imageline($image,50,50,150,150,$fcolor);
//png画像作成
imagepng($image);
//色リソースの開放
imagecolordeallocate ($image,$bcolor);
imagecolordeallocate ($image,$fcolor);

//画像リソースの開放
imagedestroy($image);
?>