Gmagick::levelimage()函数是PHP中的内置函数,用于通过将落在指定的白点和黑点之间的颜色缩放到整个可用量子范围来调整图像的级别。
用法:
mixed Gmagick::levelimage( float $blackPoint, float $gamma, float $whitePoint, int $channel = Gmagick::CHANNEL_DEFAULT )
参数:该函数接受上述和以下所述的四个参数:
- $blackPoint:它指定图像的黑点。
- $gamma:它指定图像伽玛。
- $whitePoint:它指定图像白点。
- $channel (Optional):它指定对通道模式有效的任何通道常数。
返回值:成功时此函数返回TRUE。
异常:此函数在错误时引发GmagickException。
下面给出的程序说明了PHP中的Gmagick::levelimage()函数:
使用的图片:
程序1(对图像进行平准化):
<?php
// Create a new Gmagick object
$gmagick = new Gmagick('geeksforgeeks.png');
// Level the image
$gmagick->levelimage(300000, 8, 10);
// Display the output image
header("Content-Type:image/png");
echo $gmagick->getImageBlob();
?>
输出:
程序2(绘制工程图):
<?php
// Create a new Gmagick object
$gmagick = new Gmagick('geeksforgeeks.png');
// Create a GmagickDraw object
$draw = new GmagickDraw();
// Set the color
$draw->setFillColor('white');
// Function to draw rectangle
$draw->rectangle(0, 0, 800, 400);
// Set the fill color
$draw->setFillColor('red');
// Set the font size
$draw->setfontsize(50);
// Annotate a text
$draw->annotate(30, 100, 'GeeksforGeeks');
// Use of drawimage function
$gmagick->drawImage($draw);
// Level the image
$gmagick->levelimage(0, 34, 30);
// Display the output image
header("Content-Type:image/png");
echo $gmagick->getImageBlob();
?>
输出:
参考: https://www.php.net/manual/en/gmagick.levelimage.php
相关用法
- PHP Imagick levelImage()用法及代码示例
- PHP Gmagick readimageblob()用法及代码示例
- PHP Gmagick getimagesignature()用法及代码示例
- PHP Gmagick getpackagename()用法及代码示例
- PHP Gmagick setimagerenderingintent()用法及代码示例
- PHP Gmagick getimagescene()用法及代码示例
- PHP Gmagick getquantumdepth()用法及代码示例
- PHP Gmagick getreleasedate()用法及代码示例
- PHP Gmagick separateimagechannel()用法及代码示例
- PHP Gmagick drawimage()用法及代码示例
- PHP Gmagick annotateImage()用法及代码示例
- PHP Gmagick setimagebordercolor()用法及代码示例
- PHP Gmagick getcopyright()用法及代码示例
- PHP Gmagick getimageresolution()用法及代码示例
- PHP Gmagick setimageresolution()用法及代码示例
注:本文由纯净天空筛选整理自gurrrung大神的英文原创作品 PHP | Gmagick levelimage() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。