<?php
// 200×200の画像リソースを作成
$im = imagecreatetruecolor(200, 200);
// 白色を作成
$white = imagecolorallocate($im, 0xFF, 0xFF, 0xFF);
// 黄色を作成
$yellow = imagecolorallocate($im, 0xFF, 0xFF, 0x00);
// 短形を描画する
imagefilledrectangle($im, 50, 50, 150, 150, $yellow);
// 画像出力
header("Content-type: image/png");
ImagePNG($im);
?>