(PECL imagick 2, PECL imagick 3)
Imagick::roundCorners — Rounds image corners
此函數(shù)在 Imagick 3.4.4 中被 廢棄,強(qiáng)烈建議不要應(yīng)用此函數(shù)。
$x_rounding,$y_rounding,$stroke_width = 10,$displace = 5,$size_correction = -6Rounds 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. 此方法在Imagick基于ImageMagick 6.2.9以上版本編譯時(shí)可用。 此方法在 Imagick 基于 ImageMagick 7.0.0 或以上版本編譯時(shí)不可用。
x_roundingx rounding
y_roundingy rounding
stroke_widthstroke width
displaceimage displace
size_correctionsize correction
成功時(shí)返回 true。
示例 #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");
?>