Imagick::haldClutImage()函數是PHP中的內置函數,用於使用Hald查找表替換圖像中的顏色。可以使用HALD彩色編碼器創建暫停的圖像。
用法:
bool Imagick::haldClutImage( $clut, $channel )
參數:該函數接受上述和以下描述的兩個參數:
- $clut:此參數用於保存包含Hald查找圖像的Imagick對象的值。
- $channel:此參數提供對通道模式有效的通道常數。然後,可以使用按位運算符組合一個以上的通道。 Imagick函數中的默認通道為Imagick::CHANNEL_DEFAULT。
返回值:成功時此函數返回True。
錯誤/異常:此函數在錯誤時引發ImagickException。
原始圖片:
以下示例程序旨在說明PHP中的Imagick::haldClutImage()函數:
示例1:
<?php
// require_once('path/vendor/autoload.php');
// Create new Imagick Objects
$imagick = new \Imagick(realpath('img/geeksforgeeks.png'));
$imagickPalette = new \Imagick(realpath("img/geeksforgeeks.png"));
// Use sepiatoneImage and haldClutImage function
$imagickPalette->sepiatoneImage(50);
$imagick->haldClutImage($imagickPalette);
// Image Header
header("Content-Type: image/jpg");
// Display the output image
echo $imagick->getImageBlob();
?>
輸出:
示例2:
<?php
// require_once('path/vendor/autoload.php');
// Create new Imagick Object
$imagick = new Imagick('img/geeksforgeeks.png');
$imagickPalette = new Imagick("img/geeksforgeeks.png");
// Use haldClutImage function
$imagickPalette->sepiatoneImage(150);
$imagick->haldClutImage($imagickPalette);
// Write output Image
$imagick->writeImage('raiseImae1.png');
// Destroy Imagick object
$imagick->destroy();
?>
輸出:
參考: http://php.net/manual/en/imagick.haldclutimage.php
相關用法
- PHP Imagick getImageChannelStatistics()用法及代碼示例
- PHP Imagick getImageCompose()用法及代碼示例
- PHP Imagick setImageClipMask()用法及代碼示例
- PHP Imagick setImageCompose()用法及代碼示例
- PHP Imagick getImageChannelExtrema()用法及代碼示例
- PHP Imagick getImageChannelMean()用法及代碼示例
- PHP Imagick getImageBackgroundColor()用法及代碼示例
- PHP Imagick getImageChannelDistortion()用法及代碼示例
- PHP Imagick setImageBluePrimary()用法及代碼示例
- PHP Imagick getImageBorderColor()用法及代碼示例
- PHP Imagick setImageBackgroundColor()用法及代碼示例
- PHP Imagick setImageBorderColor()用法及代碼示例
- PHP Imagick getImageClipMask()用法及代碼示例
- PHP Imagick readImageBlob()用法及代碼示例
- PHP Imagick setImageDelay()用法及代碼示例
注:本文由純淨天空篩選整理自sarthak_ishu11大神的英文原創作品 PHP | Imagick haldClutImage() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。