PHP | Gmagick readimage()函数
Gmagick::readimage()函数是PHP中的一个内置函数,用于从本地文件夹中读取图像并将其添加到 Gmagick 对象中。这是read()函数的替代方法。
句法:
Gmagick Gmagick::readimage( string $filename )
参数:此函数接受一个参数$filename ,它包含文件的名称。
返回值:此函数返回一个包含图像的 Gmagick 对象。
异常:此函数在错误时抛出 GmagickException。
下面给出的程序说明了PHP中的Gmagick::readimage()函数:
使用图像:
程序 1(从文件夹中读取图像):
readimage('geeksforgeeks.png');
// Output the image
header('Content-type: image/png');
echo $gmagick;
?>
输出:
程序2(阅读后编辑图像):
readimage('geeksforgeeks.png');
// Here you can further work with your loaded image
// Simulate a charcoal drawing
$gmagick->charcoalimage(0.1, 10);
// Output the image
header('Content-type: image/png');
echo $gmagick;
?>
输出:
参考: https://www. PHP.net/manual/en/gmagick.readimage。 PHP