Imagick::setImageClipMask()函數是PHP中的內置函數,用於設置圖像剪輯蒙版。
用法:
bool Imagick::setImageClipMask( Imagick $clip_mask )
參數:此函數接受$clip_mask作為保存圖像剪輯蒙版的參數。
返回值:成功時此函數返回TRUE。
異常:該函數在錯誤時引發ImagickException。
下麵給出的程序說明了PHP中的Imagick::setImageClipMask()函數:
程序1:
<?php
// Create two new imagick objects
$imagick = new Imagick(
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-13.png');
$clipMask = new Imagick();
$clipMask->setGravity(4);
// Add text to the object
$clipMask->newPseudoImage($imagick->getImageWidth(),
$imagick->getImageHeight(), "caption:ClipMaskText");
// Set the clip mask
$imagick->setImageClipMask($clipMask);
$imagick->negateImage(false);
// Show the output
$imagick->setformat('png');
header("Content-Type: image/png");
echo $imagick->getImageBlob();
?>
輸出:
程序2:
<?php
// Create two new imagick objects
$imagick = new Imagick(
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-13.png');
$clipMask = new Imagick();
// Create a rectangular mask
$clipMask->newPseudoImage($imagick->getImageWidth(),
$imagick->getImageHeight(), "canvas:Transparent");
$drawMask = new ImagickDraw();
$drawMask->setFillColor('white');
$drawMask->rectangle(170, 0, 470, 300);
$clipMask->drawImage($drawMask);
// Set the clip mask
$imagick->setImageClipMask($clipMask);
$imagick->negateImage(false);
// Show the output
$imagick->setformat('png');
header("Content-Type: image/png");
echo $imagick->getImageBlob();
?>
輸出:
參考: https://www.php.net/manual/en/imagick.setimageclipmask.php
相關用法
- PHP Imagick morphImages()用法及代碼示例
- PHP Imagick setImageDispose()用法及代碼示例
- PHP Imagick colorFloodfillImage()用法及代碼示例
- PHP Imagick levelImage()用法及代碼示例
- PHP Imagick linearStretchImage()用法及代碼示例
- 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 getSamplingFactors()用法及代碼示例
注:本文由純淨天空篩選整理自gurrrung大神的英文原創作品 PHP | Imagick setImageClipMask() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。