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();
?>