📜  PHP | Gmagick read()函数

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

PHP | Gmagick read()函数

Gmagick::read()函数是PHP中的一个内置函数,用于从本地文件夹中读取图像并将其添加到 Gmagick 对象中。

句法:

Gmagick Gmagick::read( string $filename )

参数:此函数接受一个参数$filename ,它包含文件的名称。

返回值:此函数返回一个包含图像的 Gmagick 对象。

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

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

使用图像:

程序 1(从文件夹中读取图像):

read('geeksforgeeks.png');
  
// Output the image  
header('Content-type: image/png');  
echo $gmagick;  
?>

输出:

程序2(阅读后编辑图像):

read('geeksforgeeks.png');
  
// Here you can further work with your loaded image
  
// Add frame to image
$gmagick->frameimage('green', 15, 15, 5, 5);
  
// Output the image
header('Content-type: image/png');
echo $gmagick;
?>

输出:

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