📜  PHP |想象一下 recolorImage()函数

📅  最后修改于: 2022-05-13 01:56:29.405000             🧑  作者: Mango

PHP |想象一下 recolorImage()函数

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

bool Imagick::recolorImage( $matrix )

参数:此函数接受单个参数$matrix ,用于存储颜色矩阵的值。
返回值:此函数在成功时返回 True。
原图:

下面的程序说明了PHP中的Imagick::recolorImage()函数:
方案一:

php
recolorImage($remapColor);
header("Content-Type: image/jpg");
 
// Display the image
echo $imagick->getImageBlob();
?>


php
setFillColor(new ImagickPixel('green'));
 
// Set the text font size
$draw->setFontSize(50);
 
$matrix = $im->queryFontMetrics($draw, $string);
$draw->annotation(0, 40, $string);
$im->newImage($matrix['textWidth'], $matrix['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();
?>


输出:

方案二:

PHP

setFillColor(new ImagickPixel('green'));
 
// Set the text font size
$draw->setFontSize(50);
 
$matrix = $im->queryFontMetrics($draw, $string);
$draw->annotation(0, 40, $string);
$im->newImage($matrix['textWidth'], $matrix['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();
?>

输出:

重新着色

参考: http: PHP。 PHP