Imagick::borderImage

(PECL imagick 2, PECL imagick 3)

Imagick::borderImage用边框包围图像

描述

public Imagick::borderImage(混合 $bordercolor, 整型 $width, 整型 $height): 布尔型

用由 bordercolor ImagickPixel 对象定义的颜色边框包围图像。

参数

bordercolor

ImagickPixel 对象或包含边框颜色的字符串

width

边框宽度

height

边框高度

返回值

成功时返回 true

变更日志

版本 描述
PECL imagick 2.1.0 现在允许使用表示颜色的字符串作为第一个参数。以前的版本只允许使用 ImagickPixel 对象。

示例

示例 #1 Imagick::borderImage()

<?php
function borderImage($imagePath, $color, $width, $height) {
$imagick = new \Imagick(realpath($imagePath));
$imagick->borderImage($color, $width, $height);
header("Content-Type: image/jpg");
echo
$imagick->getImageBlob();
}

?>

添加备注

用户贡献的备注 1 个备注

rosh3000 at gmail dot com
9 年前
要获得具有精确尺寸的图像(即添加空白),请使用 borderImage
$desired_width = 1000;
$desired_height = 1000;

$image->scaleImage($desired_width,$desired_height , true);
$image->borderImage('white', ($image->getImageWidth() - $desired_width) / 2,($image->getImageHeight() - $desired_height ) / 2);
To Top