Imagick::frameImage

(PECL imagick 2, PECL imagick 3)

Imagick::frameImage添加模拟的三维边框

描述

public Imagick::frameImage(
    mixed $matte_color,
    int $width,
    int $height,
    int $inner_bevel,
    int $outer_bevel
): bool

在图像周围添加模拟的三维边框。宽度和高度指定框架垂直和水平边的边框宽度。内部和外部斜面指示框架的内部和外部阴影的宽度。

参数

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();
}

?>

添加注释

用户贡献的注释

此页面没有用户贡献的注释。
To Top