PHP 8.5.0 Alpha 2 available for testing

Voting

: three plus four?
(Example: nine)

The Note You're Voting On

Vee W
9 years ago
For who want to show "animated" gif. This getImageBlob() will showing only one frame of image.
Use getImagesBlob() instead.

Example:

<?php
$Imagick
= new \Imagick($real_source_image_path_animated_gif);
header("Content-Type: image/gif");
echo
$Imagick->getImagesBlob();
?>

<< Back to user notes page

To Top