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


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


Imagick::swirlImage()函數是PHP中的內置函數,用於使像素圍繞圖像中心旋轉。程度表示移動每個像素的弧度。

用法:

bool Imagick::swirlImage( float $degrees )

參數:該函數接受單個參數$degrees,它定義了旋流效果的緊密度。


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

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

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

程序:

<?php  
    
// Create a Imagick object  
$imagick = new Imagick( 
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-9.png'); 
    
// Swirl the image 
$imagick->swirlImage(350);  
  
header('Content-type: image/png');  
    
// Display the output image  
echo $imagick;  
  
?> 

輸出:

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



相關用法


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