当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP Imagick __toString()用法及代码示例


Imagick::__toString()函数是PHP中的内置函数,用于将图像作为字符串返回。此函数将仅返回单个图像,并且不应用于包含多个图像的Imagick对象。

用法:

string Imagick::__toString( void )

参数:此函数不接受任何参数。


返回值:此函数以字符串形式返回当前图像。

异常:该函数在错误时引发ImagickException。

以下示例程序旨在说明PHP中的Imagick::__toString()函数:

示例1:

<?php 
  
// Create a new imagick object 
$imagick = new Imagick( 
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-13.png'); 
  
// Convert it into string 
$string = $imagick->__toString(); 
echo $string; 
?>

输出:

This will display a large text which is the string form of image.

示例2:

<?php 
  
// Create a new imagick object 
$imagick = new Imagick( 
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-13.png'); 
  
// Convert it into string 
$string = $imagick->__toString(); 
  
// Show the output from string 
header("Content-Type: image/png"); 
echo $string; 
?>

输出:

参考: https://www.php.net/manual/en/imagick.tostring.php



相关用法


注:本文由纯净天空筛选整理自gurrrung大神的英文原创作品 PHP | Imagick __toString() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。