Imagick::waveImage

(PECL imagick 2, PECL imagick 3)

Imagick::waveImageApplies wave filter to the image

说明

public 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。

示例

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

?>

参见

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top