Grafika\Imagick\Image::blob PHP Method

blob() public method

Output a binary raw dump of an image in a specified format.
public blob ( string | ImageType $type = 'PNG' )
$type string | Grafika\ImageType Image format of the dump.
    public function blob($type = 'PNG')
    {
        $this->imagick->setImageFormat($type);
        echo $this->imagick->getImageBlob();
    }