📜  PHP |想象一下 __toString()函数

📅  最后修改于: 2022-05-13 01:56:26.663000             🧑  作者: Mango

PHP |想象一下 __toString()函数

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

句法:

string Imagick::__toString( void )

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

返回值:此函数将当前图像作为字符串返回。

异常:此函数在出错时抛出 ImagickException。

下面的程序说明了PHP中的Imagick::__toString()函数

方案一:

__toString();
echo $string;
?>

输出:

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

方案二:

__toString();
  
// Show the output from string
header("Content-Type: image/png");
echo $string;
?>

输出:

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