使用画笔创建粗线。
要创建 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); ?>
画笔也可以从现有图像创建。