(PECL imagick 2, PECL imagick 3)
Imagick::frameImage — 添加模拟的三维边框
$matte_color
,$width
,$height
,$inner_bevel
,$outer_bevel
在图像周围添加模拟的三维边框。宽度和高度指定框架垂直和水平边的边框宽度。内部和外部斜面指示框架的内部和外部阴影的宽度。
matte_color
ImagickPixel 对象或表示蒙版颜色的字符串
width
边框的宽度
height
边框的高度
inner_bevel
内部斜面宽度
outer_bevel
外部斜面宽度
成功时返回 true
。
错误时抛出 ImagickException。
版本 | 描述 |
---|---|
PECL imagick 2.1.0 | 现在允许使用表示颜色的字符串作为第一个参数。以前的版本只允许使用 ImagickPixel 对象。 |
示例 #1 Imagick::frameImage()
<?php
function frameImage($imagePath, $color, $width, $height, $innerBevel, $outerBevel) {
$imagick = new \Imagick(realpath($imagePath));
$width = $width + $innerBevel + $outerBevel;
$height = $height + $innerBevel + $outerBevel;
$imagick->frameimage(
$color,
$width,
$height,
$innerBevel,
$outerBevel
);
header("Content-Type: image/jpg");
echo $imagick->getImageBlob();
}
?>