(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
// Load a mini php logo
$php = imagecreatefrompng('./php.png');
// Create the main image, 100x100
$im = imagecreatetruecolor(100, 100);
// Fill the background with white
$white = imagecolorallocate($im, 255, 255, 255);
imagefilledrectangle($im, 0, 0, 299, 99, $white);
// Set the brush
imagesetbrush($im, $php);
// Draw a couple of brushes, each overlaying each
imageline($im, 50, 50, 50, 60, IMG_COLOR_BRUSHED);
// Output image to the browser
header('Content-type: image/png');
imagepng($im);
imagedestroy($im);
imagedestroy($php);
?>
以上示例的输出类似于: