📜  PHP | Gmagick writeimage()函数

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

PHP | Gmagick writeimage()函数

Gmagick::writeimage()函数是PHP中的一个内置函数,用于将图像写入指定的文件名。

句法:

Gmagick Gmagick::writeimage( string $filename, bool $all_frames )

参数:该函数接受上面提到的两个参数,如下所述:

  • $filename:它指定文件的名称。
  • $all_frames(可选):它指定需要所有帧。

返回值:此函数在成功时返回 TRUE。

异常:此函数在错误时抛出 GmagickException。
使用的图像:捕获画布区域。

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

程序 1:写入图像

writeimage('my_image.png');
echo 'Image saved successfully';
?>

输出:

This will save the image successfully.

程序 2:写图

setFillColor('white');
  
// Function to draw rectangle
$draw->rectangle(0, 0, 800, 400);
  
// Set the fill color
$draw->setFillColor('#1bd911');
  
// Set the font size
$draw->setfontsize(50);
  
// Annotate a text
$draw->annotate(30, 100, 'GeeksforGeeks');
  
// Use of drawimage function
$gmagick->drawImage($draw);
  
// Write the image to a local folder
$gmagick->writeimage('my_drawing.png');
echo 'Image saved successfully';
?>

输出:这会将绘图保存在本地文件夹中。

Image saved successfully

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