Imagick::swirlImage

(PECL imagick 2.0.0)

Imagick::swirlImageSwirls the pixels about the center of the image

说锟斤拷

Imagick::swirlImage ( float $degrees ) : bool

Swirls the pixels about the center of the image, where degrees indicates the sweep of the arc through which each pixel is moved. You get a more dramatic effect as the degrees move from 1 to 360.

锟斤拷锟斤拷

degrees

锟斤拷锟斤拷值

锟缴癸拷时锟斤拷锟斤拷 TRUE锟斤拷

锟斤拷锟斤拷锟届常

锟斤拷锟斤拷时锟阶筹拷 ImagickException锟斤拷

锟斤拷锟斤拷

Example #1 Imagick::swirlImage()

<?php
function swirlImage($imagePath$swirl) {
    
$imagick = new \Imagick(realpath($imagePath));
    
$imagick->swirlImage($swirl);
    
header("Content-Type: image/jpg");
    echo 
$imagick->getImageBlob();
}

?>