array ( 0 => 'index.php', 1 => 'PHP Manual', ), 'head' => array ( 0 => 'UTF-8', 1 => 'it', ), 'this' => array ( 0 => 'imagick.borderimage.php', 1 => 'Imagick::borderImage', 2 => 'Surrounds the image with a border', ), 'up' => array ( 0 => 'class.imagick.php', 1 => 'Imagick', ), 'prev' => array ( 0 => 'imagick.blurimage.php', 1 => 'Imagick::blurImage', ), 'next' => array ( 0 => 'imagick.brightnesscontrastimage.php', 1 => 'Imagick::brightnessContrastImage', ), 'alternatives' => array ( ), 'source' => array ( 'lang' => 'en', 'path' => 'reference/imagick/imagick/borderimage.xml', ), 'history' => array ( ), ); $setup["toc"] = $TOC; $setup["toc_deprecated"] = $TOC_DEPRECATED; $setup["parents"] = $PARENTS; manual_setup($setup); contributors($setup); ?>

Imagick::borderImage

(PECL imagick 2, PECL imagick 3)

Imagick::borderImageSurrounds the image with a border

Descrizione

public Imagick::borderImage(mixed $bordercolor, int $width, int $height): bool

Surrounds the image with a border of the color defined by the bordercolor ImagickPixel object.

Elenco dei parametri

bordercolor

ImagickPixel object or a string containing the border color

width

Border width

height

Border height

Valori restituiti

Restituisce true in caso di successo.

Log delle modifiche

Versione Descrizione
PECL imagick 2.1.0 Now allows a string representing the color as the first parameter. Previous versions allow only an ImagickPixel object.

Esempi

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

?>