當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。