Gmagick::current()函数是PHP中的内置函数,用于返回当前Gmagick对象的引用。此函数不会创建任何副本,但会返回Gmagick的相同实例。
用法:
Gmagick Gmagick::current( void )
参数:此函数不接受任何参数。
返回值:成功时,此函数返回Gmagick对象。
异常:此函数在错误时引发GmagickException。
下面给出的程序说明了PHP中的Gmagick::current()函数:
使用的图片:
程序1:
<?php
// Create two new Gmagick object
$gmagick = new Gmagick('geeksforgeeks.png');
$gmagicknew = new Gmagick();
// Get the current object
$gmagicknew = $gmagick->current();
// Output the new Gmagick object image to browser
header('Content-type:image/png');
echo $gmagicknew;
?>
输出:
程序2:
<?php
// Create two new Gmagick object
$gmagick = new Gmagick('geeksforgeeks.png');
$gmagicknew = new Gmagick();
// Get the current object
$gmagicknew = $gmagick->current();
// Apply blur to new object
$gmagicknew->blurimage(20, 2);
// Output the image to browser
header('Content-type:image/png');
echo $gmagicknew;
?>
输出:
参考: https://www.php.net/manual/en/gmagick.current.php
相关用法
- PHP current()用法及代码示例
- PHP FilesystemIterator current()用法及代码示例
- PHP CachingIterator current()用法及代码示例
- PHP SplHeap current()用法及代码示例
- PHP AppendIterator current()用法及代码示例
- PHP SimpleXMLIterator current()用法及代码示例
- PHP Imagick current()用法及代码示例
- PHP SplFileObject current( )用法及代码示例
- PHP ArrayIterator current()用法及代码示例
- PHP DirectoryIterator current()用法及代码示例
- PHP SplObjectStorage current()用法及代码示例
- PHP SplFixedArray current()用法及代码示例
- PHP SplDoublyLinkedList current()用法及代码示例
- PHP Gmagick rollimage()用法及代码示例
注:本文由纯净天空筛选整理自gurrrung大神的英文原创作品 PHP | Gmagick current() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。