使用画笔创建粗线。
创建3x3红色画笔
<?php
$brush_size = 3;
$brush = imagecreatetruecolor($brush_size,$brush_size);
$brush_color = imagecolorallocate($brush,255,0,0);
imagefill($brush,0,0,$brush_color);
imagesetbrush($im,$brush);
?>
然后使用imageline()或imagepolygon(),IMG_COLOR_BRUSHED作为颜色。
停止使用画笔,销毁它
<?php imagedestroy($brush); ?>
画笔也可以从现有图像创建。