Display BLOB image Laravel 4

前端 未结 1 620
被撕碎了的回忆
被撕碎了的回忆 2021-01-26 10:37

I have added png images as BLOB on mysql but when I try to retrieve them, I got them as files but can\'t display as images.

Below is my code.

//Controller

相关标签:
1条回答
  • 2021-01-26 11:21
    <img src="data:image/png;base64,{{ chunk_split(base64_encode($posts2year->StudentImage)) }}" height="100" width="100">
    

    I used this in my code and it worked.

    0 讨论(0)
提交回复
热议问题