五角星
<?php
$img = imagecreatetruecolor(100, 100);
$red = imagecolorallocate($img, 0xFF, 0xF1, 0x00);
//在这里使用imageline绘制线条
imageline($img, 0, 30, 100, 30, $red);
imageline($img, 0, 100, 100, 30, $red);
imageline($img,0,100, 50, 0, $red);
imageline($img, 50, 0, 100, 100, $red);
imageline($img, 0, 30, 100, 100, $red);
header("content-type: image/png");
imagepng($img);
imagedestroy($img);