<?php
$image = imagecreatetruecolor(400, 300);
$bg = imagecolorallocate($image, 0, 0, 0);
$col_poly = imagecolorallocate($image, 255, 255, 255);
imagepolygon($image, array (
0, 0,
100, 200,
300, 200
),
3,
$col_poly);
header("Content-type: image/png");
imagepng($image);
?>
The above example will output
something similar to: