(PECL imagick 2.0.0)
Imagick::roundCorners — Rounds image corners
Diese Funktion ist bis jetzt nicht dokumentiert. Es steht nur die Liste der Argumente zur Verfügung.
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. Diese Funktion ist verfügbar, wenn Imagick gegen die ImageMagick Version 6.2.9 oder höher kompiliert wurde.
x rounding
y rounding
stroke width
image displace
size correction
Beispiel #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");
?>
Liefert TRUE bei Erfolg.