(PECL imagick 2.0.0)
Imagick::spreadImage — Randomly displaces each pixel in a block
$radius
) : boolSpecial effects method that randomly displaces each pixel in a block defined by the radius parameter.
radius
锟缴癸拷时锟斤拷锟斤拷 TRUE
锟斤拷
锟斤拷锟斤拷时锟阶筹拷 ImagickException锟斤拷
Example #1 Imagick::spreadImage()
<?php
function spreadImage($imagePath, $radius) {
$imagick = new \Imagick(realpath($imagePath));
$imagick->spreadImage($radius);
header("Content-Type: image/jpg");
echo $imagick->getImageBlob();
}
?>