<?php
// 小さい php ロゴを読み込みます
$php = imagecreatefrompng('./php.png');
// 100x100 のメイン画像を作成します
$im = imagecreatetruecolor(100, 100);
// 背景を白で塗りつぶします
$white = imagecolorallocate($im, 255, 255, 255);
imagefilledrectangle($im, 0, 0, 299, 99, $white);
// ブラシを設定します
imagesetbrush($im, $php);
// いくつかのブラシを重ねます
imageline($im, 50, 50, 50, 60, IMG_COLOR_BRUSHED);
// 画像をブラウザに出力します
header('Content-type: image/png');
imagepng($im);
imagedestroy($im);
imagedestroy($php);
?>