Imagick::setImageBackgroundColor()函數是PHP中的內置函數,用於設置圖像背景色。
用法:
bool Imagick::setImageBackgroundColor( mixed $background )
參數:此函數接受保留背景顏色的單個參數$background。
返回值:成功時此函數返回TRUE。
異常:該函數在錯誤時引發ImagickException。
以下示例程序旨在說明PHP中的Imagick::setImageBackgroundColor()函數:
程序1:
<?php
// Create a new imagick object
$imagick = new Imagick(
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-13.png');
// Set background color
$imagick->setImageBackgroundColor('yellow');
// Set the ImageAlphaChannel to 9 which corresponds
// to imagick::ALPHACHANNEL_TRANSPARENT
$imagick->setImageAlphaChannel(9);
// Display the image
header("Content-Type: image/png");
echo $imagick->getImageBlob();
?>
輸出:
程序2:
<?php
// Create a new imagick object
$imagick = new Imagick();
// Write the caption in a image
$imagick->newPseudoImage(800, 270, "caption:GeekforGeeks");
// Set background color
$imagick->setImageBackgroundColor('grey');
// Set the ImageAlphaChannel to 9 which corresponds
// to imagick::ALPHACHANNEL_TRANSPARENT
$imagick->setImageAlphaChannel(9);
// Display the image
$imagick->setformat('png');
header("Content-Type: image/png");
echo $imagick->getImageBlob();
?>
輸出:
參考: https://www.php.net/manual/en/imagick.setimagebackgroundcolor.php
相關用法
- PHP Imagick colorFloodfillImage()用法及代碼示例
- PHP Imagick morphImages()用法及代碼示例
- PHP Imagick setImageDispose()用法及代碼示例
- PHP Imagick linearStretchImage()用法及代碼示例
- PHP Imagick levelImage()用法及代碼示例
- PHP Imagick profileImage()用法及代碼示例
- PHP Imagick coalesceImages()用法及代碼示例
- PHP Imagick functionImage()用法及代碼示例
- PHP Imagick smushImages()用法及代碼示例
- PHP Imagick readImageBlob()用法及代碼示例
- PHP Imagick identifyFormat()用法及代碼示例
- PHP Imagick colorizeImage()用法及代碼示例
- PHP Imagick addImage()用法及代碼示例
- PHP Imagick clear()用法及代碼示例
- PHP Imagick getPage()用法及代碼示例
注:本文由純淨天空篩選整理自gurrrung大神的英文原創作品 PHP | Imagick setImageBackgroundColor() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。