<?php
// 200x100 の画像を作成します
$im = imagecreatetruecolor(200, 100);
$white = imagecolorallocate($im, 0xFF, 0xFF, 0xFF);
$black = imagecolorallocate($im, 0x00, 0x00, 0x00);
// 背景を白に設定します
imagefilledrectangle($im, 0, 0, 299, 99, $white);
// 線幅を 5 に設定します
imagesetthickness($im, 5);
// 矩形を描画します
imagerectangle($im, 14, 14, 185, 85, $black);
// 画像をブラウザに出力します
header('Content-Type: image/png');
imagepng($im);
imagedestroy($im);
?>