当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP Gmagick quantizeimage()用法及代码示例


Gmagick::quantizeimage()函数是PHP中的内置函数,用于分析参考图像中的颜色并选择固定数量的颜色来表示图像。此函数的主要原因是在最小化处理时间的同时,最小化输入和输出图像之间的色差。

用法:

Gmagick Gmagick::quantizeimage( int $numColors, int $colorspace,
          int $treeDepth, bool $dither, bool $measureError )

参数:该函数接受上述和以下所述的五个参数:


  • $numColors:它指定颜色的数量。
  • $colorspace:它指定色彩空间。
  • $treeDepth:它指定树的深度。
  • $dither:它指定是否允许抖动。
  • $measureError:它指定是否测量图像差异误差。

返回值:成功时,此函数返回Gmagick对象。

异常:此函数在错误时引发GmagickException。

下面给出的程序说明了PHP中的Gmagick::quantizeimage()函数:

使用的图片:

程序1(量化图像):

<?php 
  
// Create a new Gmagick object 
$gmagick = new Gmagick('geeksforgeeks.png'); 
  
// Quantize the image 
$gmagick->quantizeimage(100, 8, 256, true, false); 
  
// Output the image   
header('Content-type:image/png');   
echo $gmagick;   
?>

输出:

程序2(量化工程图):

<?php 
  
// Create a new Gmagick object 
$gmagick = new Gmagick('geeksforgeeks.png'); 
   
// Create a GmagickDraw object 
$draw = new GmagickDraw(); 
   
// Set the color 
$draw->setFillColor('red'); 
   
// Function to draw rectangle 
$draw->rectangle(0, 0, 800, 400); 
   
// Set the fill color 
$draw->setFillColor('white'); 
   
// Set the font size 
$draw->setfontsize(50); 
   
// Annotate a text 
$draw->annotate(30, 100, 'GeeksforGeeks'); 
   
// Use of drawimage function 
$gmagick->drawImage($draw); 
  
// Quantize the image 
$gmagick->quantizeimage(10, 8, 996, true, false); 
  
// Output the image   
header('Content-type:image/png');   
echo $gmagick;   
?>

输出:

参考: https://www.php.net/manual/en/gmagick.quantizeimage.php



相关用法


注:本文由纯净天空筛选整理自gurrrung大神的英文原创作品 PHP | Gmagick quantizeimage() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。