(PECL imagick 2.0.0)
Imagick::waveImage — Applies wave filter to the image
$amplitude
, float $length
)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();
}
?>