Imagick::waveImage

(PECL imagick 2.0.0)

Imagick::waveImageApplies wave filter to the image

˵��

Imagick::waveImage ( float $amplitude , float $length ) : bool

Applies a wave filter to the image. �˷�����Imagick����ImageMagick 6.2.9���ϰ汾����ʱ���á�

����

amplitude

The amplitude of the wave.

length

The length of the wave.

����ֵ

�ɹ�ʱ���� TRUE��

�����쳣

����ʱ�׳� ImagickException��

�μ�

����

Example #1 WaveImage can be quite slow Imagick::waveImage()

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

?>