Imagick new features / An example of Imagick::roundCorners
<?php
/* Create a new object and read the image */
$im = new Imagick( 'img.png' );
/* Round the corners. (yes, this is all that is needed.) */
$im->roundCorners( 30, 30 );
/* Output the image */
header( "Content-Type: image/png" );
echo $im;
?>