Syntax:string Imagick::__ toString (void)
Parameters:This function takes no parameters.
Return value:This function returns the current image as a string.
Exceptions:This function will throw an ImagickException on error.The following programs illustrate the
Imagick::__ toString()function in PHP:
Program 1:
// Create a new imagick object
$imagick
=
new
Imagick (
’ https://media.engineerforengineer.org/wp-content/uploads/engineerforengineer-13.png ’
);
// Convert it to string
$string
=
$imagick
-> __ toString();
echo
$string
;
?>
Output:This will display a large text which is the string form of image.
Program 2:
// Create a new imagick object
$imagick
=
new
Imagick (
’ https://media.engineerforengineer.org/wp-content/uploads/engineerforengineer-13.png ’
);
// Convert it to string
$string
=
$imagick
-> __ toString();
// Show output from line
header (
"Content-Type: image / png"
);
echo
$string
;
?>
Output: Link: https://www.php.net/manual/en/imagick.tostring.php