imagesetbrush
(PHP 4 >= 4.0.6, PHP 5, PHP 7, PHP 8)
imagesetbrush — 为线条设置笔刷图像
说明
当用特殊的颜色 IMG_COLOR_BRUSHED
或 IMG_COLOR_STYLEDBRUSHED
绘制时,imagesetbrush() 通过所有的线条函数设置要使用的笔刷图像。【注:使用笔刷图像,所画的线是由
brush
所代表的图像构成的。请参考并尝试运行
imagesetstyle() 中的例子以帮助理解。】
警告
笔刷完成后不需要采取什么特殊动作,但如果要销毁笔刷图像(或让 PHP 销毁),不能使用 IMG_COLOR_BRUSHED
或 IMG_COLOR_STYLEDBRUSHED
颜色,除非设置了新的笔刷图像。
示例
示例 #1 imagesetbrush() 示例
<?php
// 加载迷你 php logo
$php = imagecreatefrompng('./php.png');
// 创建主图像 100x100
$im = imagecreatetruecolor(100, 100);
// 用白色填充背景
$white = imagecolorallocate($im, 255, 255, 255);
imagefilledrectangle($im, 0, 0, 299, 99, $white);
// 设置画笔
imagesetbrush($im, $php);
// 画几支画笔,每支都相互重叠
imageline($im, 50, 50, 50, 60, IMG_COLOR_BRUSHED);
// 输出图像到浏览器
header('Content-type: image/png');
imagepng($im);
?>
以上示例的输出类似于:

+添加备注
用户贡献的备注 1 note
brent at ebrent dot net ¶
18 years ago
Use a brush to create a thick line.
To create a 3x3 red brush:
<?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);
?>
Then use imageline() or imagepolygon() with IMG_COLOR_BRUSHED as the color.
To stop using the brush, destroy it:
<?php imagedestroy($brush); ?>
The brush can also be created from an existing image.
备份地址:http://www.lvesu.com/blog/php/function.imagesetbrush.php