当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP imagesetbrush()用法及代码示例


imagesetbrush()函数是PHP中的内置函数,用于设置线条画的笔刷图像。使用imageline()或imagepolygon()之类的函数进行线条绘制。可以使用IMG_COLOR_BRUSHED或IMG_COLOR_STYLEDBRUSHED绘制特殊颜色。

用法:

bool imagesetbrush( resource $image, resource $brush )

参数:该函数接受上述和以下描述的两个参数:


  • $image:它指定要处理的图像资源。
  • $brush:它指定另一个充当画笔的图像资源。

返回值:如果成功,则此函数返回TRUE;如果失败,则返回FALSE。

下面给出的程序说明了PHP中的imagesetbrush()函数:

程序1:

<?php 
// Load the png image 
$image1 = imagecreatefrompng( 
    'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-13.png'); 
  
// Create a another image, 700x200 to be used as brush 
$image2 = imagecreatetruecolor(700, 200); 
  
// Fill the background 
$pink = imagecolorallocate($image2, 255, 0, 255); 
imagefilledrectangle($image2, 0, 0, 800, 299, $pink); 
  
// Set the brush 
imagesetbrush($image2, $image1); 
  
// Draw line 
imageline($image2, 350, 100, 50, 6, IMG_COLOR_BRUSHED); 
  
// Output image to the browser 
header('Content-type:image/png'); 
imagepng($image2); 
?>

输出:

程序2:

<?php 
// Load the png image 
$image = imagecreatefrompng( 
    'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-13.png'); 
  
// Create a red color brush of size 3 
$brush = imagecreatetruecolor(3, 3); 
$brush_color = imagecolorallocate($brush, 255, 0, 0); 
imagefill($brush, 0, 0, $brush_color); 
  
// Set the brush 
imagesetbrush($image, $brush); 
  
// Draw line with brush 
imageline($image, 150, 100, 500, 6, IMG_COLOR_BRUSHED); 
  
// Output image to the browser 
header('Content-type:image/png'); 
imagepng($image); 
?>

输出:

参考: https://www.php.net/manual/en/function.imagesetbrush.php



相关用法


注:本文由纯净天空筛选整理自gurrrung大神的英文原创作品 PHP | imagesetbrush() function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。