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


PHP Imagick recolorImage()用法及代码示例


Imagick::recolorImage()函数是PHP中的内置函数,可用于平移,缩放,剪切或旋转图像颜色。该函数用作矩阵大小变量。通常,RGBA使用5×5矩阵,而CMYK使用6×6矩阵。

用法:

bool Imagick::recolorImage( $matrix )

参数:该函数接受单个参数$matrix,该参数用于存储颜色矩阵的值。


返回值:成功时此函数返回True。

原始图片:

以下示例程序旨在说明PHP中的Imagick::recolorImage()函数:

程序1:

<?php  
  
// Create new Imagick object 
$imagick = new \Imagick( 
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-19.png'); 
  
// Color Matrix 
$remapColor = [ 1, 0, 0, 
                0, 0, 1, 
                0, 1, 0, ]; 
   
// Recolor the Image 
$imagick->recolorImage($remapColor); 
header("Content-Type: image/jpg"); 
  
// Display the image 
echo $imagick->getImageBlob(); 
?>

输出:

程序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);  
  
// Recolor the Image 
$remapColor = [ 1, 300, 70, 
                10, 0, 40, 
                10, 10, 0, ]; 
   
$im->recolorImage($remapColor); 
   
$im->setImageFormat('jpeg');  
  
header("Content-Type: image/jpg");  
  
// Display the output image  
echo $im->getImageBlob();  
?> 

输出:
recolor

参考: http://php.net/manual/en/imagick.recolorimage.php



相关用法


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