How can I display image of blob type in php?

257 Views Asked by At

I'm trying to display an image, but that image type is blob.

Question:

How can I display blob data type image?

I tried with:

function getBlob() {
     $data = $this->user_model->getBlob();
     echo "<img src="base64_encode( $data['IMAGE'] )">";
}

But doesn't work.

1

There are 1 best solutions below

0
On BEST ANSWER

You forgot the data:URI scheme (data:image/jpeg;base64,) :

Wikipedia:

The data URI scheme is a URI scheme (Uniform Resource Identifier scheme) that provides a way to include data in-line in web pages as if they were external resources [...]

Do it as follow:

echo '<img src="data:image/jpeg;base64,'.base64_encode( $data['IMAGE'] ).'"/>'