I have an image data that stored in sqlite database. the data is something like this:
€TâM89504e470d0a1a0a0000000d494844520000012
how to show the data in html with php?
Looks like a base64 encoding.
If you have a PHP script that can access the database, use the following PHP snippet:
echo "<img src='data:image/png;base64,".$base64_data."' />