<?
Header("Content-Type: image/png");
$width = 300;
$height = 200;
%bg = 0xFFD700; // gold
$image = ImageCreate($width, $height); // 新規画像作成
ImageColorAllocate($image, ($bg>>16) & 0xff, ($bg>>8) & 0xff, $bg & 0xff); // 背景色設定
ImagePNG($image); // 画像出力
ImageDestroy($image);
?>