Gmagick::read()函数是PHP中的内置函数,用于从本地文件夹中读取图像并将其添加到Gmagick对象。
用法:
Gmagick Gmagick::read( string $filename )
参数:该函数接受单个参数$filename,该参数保存文件名。
返回值:此函数返回包含图像的Gmagick对象。
异常:此函数在错误时引发GmagickException。
下面给出的程序说明了PHP中的Gmagick::read()函数:
使用的图片:
程序1(从文件夹读取图像):
<?php
// Create a new Gmagick object
$gmagick = new Gmagick();
// Read an image
$gmagick->read('geeksforgeeks.png');
// Output the image
header('Content-type:image/png');
echo $gmagick;
?>
输出:
程序2(阅读后编辑图像):
<?php
// Create a new Gmagick object
$gmagick = new Gmagick();
// Read an image
$gmagick->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
相关用法
- PHP Gmagick getimageextrema()用法及代码示例
- PHP Gmagick getimagecolorspace()用法及代码示例
- PHP Gmagick setimageprofile()用法及代码示例
- PHP Gmagick setimageblueprimary()用法及代码示例
- PHP Gmagick getimagewidth()用法及代码示例
- PHP Gmagick getimagedelay()用法及代码示例
- PHP Gmagick shearimage()用法及代码示例
- PHP Gmagick getimagefilename()用法及代码示例
- PHP Gmagick getImageDispose()用法及代码示例
- PHP Gmagick commentImage()用法及代码示例
- PHP Gmagick setsize()用法及代码示例
- PHP Gmagick edgeimage()用法及代码示例
- PHP Gmagick chopimage()用法及代码示例
- PHP Gmagick setimagetype()用法及代码示例
- PHP Gmagick getImageRenderingIntent()用法及代码示例
注:本文由纯净天空筛选整理自gurrrung大神的英文原创作品 PHP | Gmagick read() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。