Imagick::randomThresholdImage()函數是PHP中的內置函數,用於根據與閾值相比每個像素的強度來更改單個像素的值。結果是high-contrast,two-color圖像。
用法:
bool Imagick::randomThresholdImage( $low, $high, $channel )
參數:此函數接受上述和以下所述的三個參數:
- $low:此參數存儲低點的值。
- $high:此參數存儲高點的值。
- $channel:此參數提供對通道模式有效的通道常數。然後,可以使用按位運算符組合一個以上的通道。 Imagick函數中的默認通道為Imagick::CHANNEL_DEFAULT。
返回值:成功時此函數返回True。
原始圖片:
以下示例程序旨在說明PHP中的Imagick::randomThresholdImage()函數:
示例1:
<?php
// require_once('path/vendor/autoload.php');
header('Content-type: image/png');
//Create Imagick Object
$image = new Imagick(
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-19.png');
// Use randomThresholdImage Function
$image->randomThresholdImage(0.3, 0.5, 5);
// Display the image
echo $image;
?>
輸出:
示例2:
<?php
$string = "Computer Science portal for Geeks!";
// Creating new image of above String
// and add color and background
$im = new Imagick();
$draw = new ImagickDraw();
// Fill the color in image
$draw->setFillColor(new ImagickPixel('green'));
// Set the text font size
$draw->setFontSize(50);
$metrix = $im->queryFontMetrics($draw, $string);
$draw->annotation(0, 40, $string);
$im->newImage($metrix['textWidth'], $metrix['textHeight'],
new ImagickPixel('white'));
// Draw the image
$im->drawImage($draw);
// Use randomThresholdImage Function
$im->randomThresholdImage(0.3, 0.5, 5);
$im->setImageFormat('jpeg');
header("Content-Type: image/jpg");
// Display the output image
echo $im->getImageBlob();
?>
輸出:
參考: http://php.net/manual/en/imagick.randomthresholdimage.php
相關用法
- PHP Imagick getImageCompose()用法及代碼示例
- PHP Imagick getImageChannelStatistics()用法及代碼示例
- PHP Imagick setImageCompose()用法及代碼示例
- PHP Imagick getImageChannelMean()用法及代碼示例
- PHP Imagick getImageChannelExtrema()用法及代碼示例
- PHP Imagick setImageClipMask()用法及代碼示例
- PHP Imagick getImageClipMask()用法及代碼示例
- PHP Imagick haldClutImage()用法及代碼示例
- PHP Imagick getImageBackgroundColor()用法及代碼示例
- PHP Imagick getImageChannelDistortion()用法及代碼示例
- PHP Imagick setImageBluePrimary()用法及代碼示例
- PHP Imagick getImageBorderColor()用法及代碼示例
- PHP Imagick setImageBackgroundColor()用法及代碼示例
- PHP Imagick setImageBorderColor()用法及代碼示例
- PHP Imagick setImageDelay()用法及代碼示例
注:本文由純淨天空篩選整理自sarthak_ishu11大神的英文原創作品 PHP | Imagick randomThresholdImage() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。