Imagick
在线手册:中文 英文
PHP手册

Imagick::readImageBlob

(PECL imagick 2.0.0)

Imagick::readImageBlobReads image from a binary string

说明

bool Imagick::readImageBlob ( string $image [, string $filename ] )

Reads image from a binary string

参数

image

返回值

成功时返回 TRUE .

错误/异常

错误时抛出 ImagickException .


Imagick
在线手册:中文 英文
PHP手册
PHP手册 - N: Reads image from a binary string

用户评论:

finalmau at gmail dot com (30-Apr-2008 12:22)

For read a file from a bfile using OCI->LOB

//any.jpg must be any file
$image = new Imagick('any.jpg');

// rewind the OCI->lob
$ociLob->rewind();

//This is the magick
$image->readImageBlob($ociLob->read($oci->size()), $oci->size());