PHP 8.3.4 Released!

Gmagick::readimageblob

(PECL gmagick >= Unknown)

Gmagick::readimageblobReads image from a binary string

Descrição

public Gmagick::readimageblob(string $imageContents, string $filename = ?): Gmagick

Reads image from a binary string.

Parâmetros

imageContents

Content of image.

filename

The image filename.

Valor Retornado

The Gmagick object.

Erros/Exceções

Lança uma exceção GmagickException em caso de erro.

add a note

User Contributed Notes 1 note

up
6
MPLong
13 years ago
If you want to be able to do the opposite (output your gmagick object to a blob), then use getImageBlob() like this:

$outputstring = $im->getImageBlob();

This is apparently undocumented here, but since the entire library is ported/modeled on the imagemagick library, it makes sense that it uses the same name as imagemagick.
To Top