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


PHP Imagick borderImage()用法及代碼示例


Imagick::borderImage()函數是PHP中的一個內置函數,用於在圖像中繪製邊框。此函數創建給定顏色的包圍圖像的邊框。

用法:

bool Imagick::borderImage( $bordercolor, $width, $height )

參數:此函數接受上麵提到並在下麵描述的三個參數:


  • $bordercolor:此參數是ImagickPixel對象或包含邊框顏色的字符串。
  • $width:此參數用於設置邊框寬度。
  • $height:此參數用於設置邊框高度。

返回值:成功時此函數返回True。

以下示例程序旨在說明PHP中的Imagick::borderImage()函數:

程序1:

<?php 
  
// Create an image object 
$image = new Imagick( 
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-9.png'); 
  
// Set the border in the given image 
$image->borderImage('green', 100, 100); 
  
header("Content-Type: image/jpg"); 
  
// Display image 
echo $image; 
?>

輸出:
border image

程序2:

<?php 
  
// Create an image object 
$image = new Imagick( 
'https://media.geeksforgeeks.org/wp-content/uploads/adaptiveThresholdImage.png'); 
  
// Set the border in the given image 
$image->borderImage('green', 20, 20); 
  
header("Content-Type: image/jpg"); 
  
// Display image 
echo $image; 
?>

輸出:
border image

相關文章:

參考: http://php.net/manual/en/imagick.borderimage.php



相關用法


注:本文由純淨天空篩選整理自Mahadev99大神的英文原創作品 PHP | Imagick borderImage() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。