Imagick::spreadImage
(PECL imagick 2, PECL imagick 3)
Imagick::spreadImage — ブロック内の各ピクセルをランダムに移動する
パラメータ
radius
-
戻り値
成功した場合に true
を返します。
エラー / 例外
エラー時に ImagickException をスローします。
例
例1 Imagick::spreadImage()
<?php
function spreadImage($imagePath, $radius) {
$imagick = new \Imagick(realpath($imagePath));
$imagick->spreadImage($radius);
header("Content-Type: image/jpg");
echo $imagick->getImageBlob();
}
?>
+add a note
User Contributed Notes
There are no user contributed notes for this page.