downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | links | conferences | my php.net

search for in the

Imagick::readImageFile> <Imagick::readImage
Last updated: Fri, 20 May 2011

view this page in

Imagick::readImageBlob

(PECL imagick 2.0.0)

Imagick::readImageBlobLee una imagen desde una cadena binaria

Descripción

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

Esta función no está documentada actualmente, solamente se encuentra disponible la lista de parámetros.

Lee una imagen desde una cadena binaria

Parámetros

image

Valores devueltos

Devuelve TRUE en caso de éxito.

Errores/Excepciones

Lanza ImagickException en caso de error.



add a note add a note User Contributed Notes Imagick::readImageBlob
finalmau at gmail dot com 29-Apr-2008 11: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());

 
show source | credits | stats | sitemap | contact | advertising | mirror sites