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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。