PHP |想象一下 roundCorners()函数
Imagick::roundCorners()函数是PHP中的一个内置函数,用于圆角图像。
句法:
bool Imagick::roundCorners( float $x_rounding,
float $y_rounding, float $stroke_width = 10,
float $displace = 5, float $size_correction = -6 )
参数:该函数接受上面提到的五个参数,如下所述:
- $x_rounding:它指定x舍入的数量。
- $y_rounding:它指定y舍入的数量。
- $stroke_width (可选):指定笔划宽度。该参数的默认值为 10。
- $displace (可选):指定图片的置换。该参数的默认值为 5。
- $size_correction(可选):它指定尺寸校正。该参数的默认值为-6。
返回值:此函数在成功时返回 TRUE。
异常:此函数在出错时抛出 ImagickException。
下面给出的程序说明了PHP中的Imagick::roundCorners()函数:
方案一:
roundCorners(20, 20, 5, 5, -8);
// Display the image
$imagick->setImageFormat('jpg');
header("Content-Type: image/jpg");
echo $imagick->getImageBlob();
?>
输出:
方案二:
roundCorners(100, 100, 5);
// Display the image
$imagick->setImageFormat('jpg');
header("Content-Type: image/jpg");
echo $imagick->getImageBlob();
?>
输出:
参考: https://www. PHP.net/manual/en/imagick.roundcorners。 PHP