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
相關用法
- PHP Gmagick swirlimage()用法及代碼示例
- PHP Imagick getImageChannelDistortions()用法及代碼示例
- PHP Imagick getImageCompression()用法及代碼示例
- PHP Imagick getImageExtrema()用法及代碼示例
- PHP Imagick setImageCompressionQuality()用法及代碼示例
- PHP Imagick setImageCompose()用法及代碼示例
- PHP Imagick getImageClipMask()用法及代碼示例
- PHP Imagick getImageChannelStatistics()用法及代碼示例
- PHP Imagick getImageCompose()用法及代碼示例
- PHP Imagick setImageClipMask()用法及代碼示例
- PHP Imagick getImageChannelExtrema()用法及代碼示例
- PHP Imagick getImageChannelMean()用法及代碼示例
- PHP Imagick setImageBorderColor()用法及代碼示例
- PHP Imagick setImageDelay()用法及代碼示例
- PHP Imagick getImageChannelKurtosis()用法及代碼示例
注:本文由純淨天空篩選整理自gurrrung大神的英文原創作品 PHP | Imagick swirlImage() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。