<?php
// 55x30 の画像を作成します
$im = imagecreatetruecolor(55, 30);
$white = imagecolorallocate($im, 255, 255, 255);
// 白の矩形を描画します
imagefilledrectangle($im, 4, 4, 50, 25, $white);
// 画像を保存します
imagepng($im, './imagefilledrectangle.png');
imagedestroy($im);
?>