📜  PHP | Gmagick cyclecolormapimage()函数

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

PHP | Gmagick cyclecolormapimage()函数

Gmagick::cyclecolormapimage()函数是PHP中的一个内置函数,用于将图像颜色图替换给定数量的位置。如果您多次循环颜色图,您可以产生迷幻效果。

句法:

Gmagick Gmagick::cyclecolormapimage( int $displace )

参数:此函数接受单个参数$displace保存位移。

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

异常:此函数在错误时抛出 GmagickException。

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

使用图像:

方案一:

cyclecolormapimage(2); 
  
// Output the image to browser
header('Content-type: image/png');  
echo $gmagick;  
?>  

输出:

方案二:

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);
  
// Apply the cyclecolormapimage() function
$gmagick->cyclecolormapimage(1); 
  
// Display the output image
header("Content-Type: image/png");
echo $gmagick->getImageBlob();
?>

输出:

参考: https://www. PHP.net/manual/en/gmagick.cyclecolormapimage。 PHP