Answers for "render image from base64"

2

img src data base64

<img src="data:image/png;base64,..." /> <!-- Replace png with the mime type of the image --!>
Posted by: Guest on March-01-2021
0

react display base64 image

<img class="card-img-top" src={"data:image/png;base64," + card.background} alt="Card image cap" />
Posted by: Guest on December-24-2021

Browse Popular Code Answers by Language