(PECL imagick 2.0.0)
Imagick::roundCorners — Rounds image corners
Esta função não está documentada; somente a lista de argumentos está disponível.
Rounds image corners. The first two parameters control the amount of rounding and the three last parameters can be used to fine-tune the rounding process. Este método esta disponível apenas se Imagick foi compilado com ImageMagick versão 6.2.9 ou mais nova.
x rounding
y rounding
stroke width
image displace
size correction
Exemplo #1 Using Imagick::roundCorners():
Rounds the image corners
<?php
$image = new Imagick();
$image->newPseudoImage(100, 100, "magick:rose");
$image->setImageFormat("png");
$image->roundCorners(5,3);
$image->writeImage("rounded.png");
?>
Retorna TRUE em sucesso.