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