Imagick::borderImage()函數是PHP中的一個內置函數,用於在圖像中繪製邊框。此函數創建給定顏色的包圍圖像的邊框。
用法:
bool Imagick::borderImage( $bordercolor, $width, $height )
參數:此函數接受上麵提到並在下麵描述的三個參數:
- $bordercolor:此參數是ImagickPixel對象或包含邊框顏色的字符串。
- $width:此參數用於設置邊框寬度。
- $height:此參數用於設置邊框高度。
返回值:成功時此函數返回True。
以下示例程序旨在說明PHP中的Imagick::borderImage()函數:
程序1:
<?php
// Create an image object
$image = new Imagick(
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-9.png');
// Set the border in the given image
$image->borderImage('green', 100, 100);
header("Content-Type: image/jpg");
// Display image
echo $image;
?>
輸出:
程序2:
<?php
// Create an image object
$image = new Imagick(
'https://media.geeksforgeeks.org/wp-content/uploads/adaptiveThresholdImage.png');
// Set the border in the given image
$image->borderImage('green', 20, 20);
header("Content-Type: image/jpg");
// Display image
echo $image;
?>
輸出:
相關文章:
- PHP - Imagick addImage()用法及代碼示例
- PHP - Imagick addNoiseImage()用法及代碼示例
- PHP - Imagick adaptiveBlurImage()用法及代碼示例
參考: http://php.net/manual/en/imagick.borderimage.php
相關用法
- PHP Gmagick borderImage()用法及代碼示例
- HTML Style borderImage用法及代碼示例
- PHP Imagick readImage()用法及代碼示例
- PHP Imagick readImageFile()用法及代碼示例
- PHP Imagick remapImage()用法及代碼示例
- PHP Imagick identifyImage()用法及代碼示例
- PHP Imagick separateImageChannel()用法及代碼示例
- PHP Imagick convolveImage()用法及代碼示例
- PHP Imagick gammaImage()用法及代碼示例
- PHP Imagick readImages()用法及代碼示例
- PHP Imagick flattenImages()用法及代碼示例
- PHP Imagick rollImage()用法及代碼示例
- PHP Imagick getImageVirtualPixelMethod()用法及代碼示例
- PHP Imagick getImageRegion()用法及代碼示例
- PHP Imagick getIteratorIndex()用法及代碼示例
注:本文由純淨天空篩選整理自Mahadev99大神的英文原創作品 PHP | Imagick borderImage() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。