画像の周りを枠線で囲む
$bordercolor
$width
$height
画像の周りを枠線で囲みます。枠線の色は ImagickPixel オブジェクトで指定します。
bordercolor
枠線の色を含む ImagickPixel オブジェクトあるいは文字列。
width
枠線の幅。
height
枠線の高さ。
成功した場合に true を返します。
true
例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(); } ?>