Imagick::charcoalImage()函數是PHP中的內置函數,用於模擬圖像的木炭繪製。
用法:
bool Imagick::charcoalImage( $radius, $sigma )
參數:該函數接受上述和以下描述的兩個參數:
- $radius:此參數以像素為單位存儲高斯半徑的值。
- $sigma:此參數以像素為單位存儲高斯標準偏差的值。
返回值:成功時此函數返回True。
原始圖片:
以下示例程序旨在說明PHP中的Imagick::charcoalImage()函數:
程序:
<?php
// require_once('path/vendor/autoload.php');
// Create a new Imagick Object
$image = new Imagick(
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-14.png');
// Charcoal Image function
$image->charcoalImage(0.2, 1);
header('Content-type: image/png');
// Display the output image
echo $image;
?>
輸出:
相關文章:
參考: http://php.net/manual/en/imagick.charcoalimage.php
相關用法
- PHP Gmagick charcoalimage()用法及代碼示例
- PHP Imagick despeckleImage()用法及代碼示例
- PHP Imagick randomThresholdImage()用法及代碼示例
- PHP Imagick distortImage()用法及代碼示例
- PHP Imagick convolveImage()用法及代碼示例
- PHP Imagick readImage()用法及代碼示例
- PHP Imagick readImageFile()用法及代碼示例
- PHP Imagick separateImageChannel()用法及代碼示例
- PHP Imagick remapImage()用法及代碼示例
- PHP Imagick readImages()用法及代碼示例
- PHP Imagick sepiaToneImage()用法及代碼示例
- PHP Imagick identifyImage()用法及代碼示例
- PHP Imagick enhanceImage()用法及代碼示例
- PHP Imagick equalizeImage()用法及代碼示例
- PHP Imagick getIteratorIndex()用法及代碼示例
注:本文由純淨天空篩選整理自sarthak_ishu11大神的英文原創作品 PHP | Imagick charcoalImage() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。