PHP
jpgで出力
imagejpeg($resource, $filename, $quality);
gifで出力
imagegif($resource, $filename);
pngで出力
imagepng($resource, $filename, $quality(圧縮レベル));
色の生成
imagecolorallocate($resource, $r, $g, $b);
キャンバスを生成
imagecreatetruecolor($width, $height);
塗りつぶす
imagefill($resource, $startX, $startY, $color);
メモリ解放
imagedestroy($resource)
線の太さを指定
imagesetthickness($resource, $size)
多角形を描画
imagepolygon($resource, $array, $numOfTops, $color)
塗りつぶした多角形を描画
imagepolygon($resource, $array, $numOfTops, $color)
http://jp2.php.net/manual/ja/book.image.php