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


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


Imagick::roundCorners()函數是PHP中的內置函數,用於圓角處理圖像。

用法:

bool Imagick::roundCorners( float $x_rounding, 
float $y_rounding, float $stroke_width = 10, 
float $displace = 5, float $size_correction = -6 )

參數:該函數接受上述和以下所述的五個參數:


  • $x_rounding:它指定x舍入的數量。
  • $y_rounding:它指定y舍入的數量。
  • $stroke_width(可選):它指定筆劃寬度。此參數的默認值為10。
  • $displace (Optional):它指定圖像位移。該參數的默認值為5。
  • $size_correction(可選):它指定尺寸校正。該參數的默認值為-6。

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

異常:該函數在錯誤時引發ImagickException。

下麵給出的程序說明了PHP中的Imagick::roundCorners()函數:

程序1:

<?php 
  
// Create a new imagick object 
$imagick = new Imagick( 
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-13.png'); 
  
// Round the corners 
$imagick->roundCorners(20, 20, 5, 5, -8); 
  
// Display the image 
$imagick->setImageFormat('jpg'); 
header("Content-Type: image/jpg"); 
echo $imagick->getImageBlob(); 
?>

輸出:

程序2:

<?php 
  
// Create a new imagick object 
$imagick = new Imagick( 
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-13.png'); 
  
// Round the corners 
$imagick->roundCorners(100, 100, 5); 
  
// Display the image 
$imagick->setImageFormat('jpg'); 
header("Content-Type: image/jpg"); 
echo $imagick->getImageBlob(); 
?>

輸出:

參考: https://www.php.net/manual/en/imagick.roundcorners.php



相關用法


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