Imagick
PHP Manual

Imagick::waveImage

(PECL imagick 2.0.0)

Imagick::waveImageApplies wave filter to the image

Descrição

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

Applies a wave filter to the image. Este método está disponível se o PHP foi compilado com o ImageMagick versão 6.2.9 ou superior.

Parâmetros

amplitude

The amplitude of the wave.

length

The length of the wave.

Valor Retornado

Retorna TRUE no sucesso.

Erros

Lança ImagickException em caso de erro.

Veja Também

Exemplos

Exemplo #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();
}

?>


Imagick
PHP Manual