프론트엔드/프론트엔드 이슈
바이너리 데이터를 base64 string 으로 변환해서 이미지 보여주기
syleemomo
2023. 10. 23. 20:41
728x90
https://stackoverflow.com/questions/14915058/how-to-display-binary-data-as-image-extjs-4
How to display binary data as image - extjs 4
Here is the binary for a valid .JPEG image. http://pastebin.ca/raw/2314500 I have tried to use Python to save this binary data into an image. How can I convert this data to a viewable .JPEG image
stackoverflow.com
var img = document.createElement('img');
img.src = 'data:image/jpeg;base64,' + btoa('your-binary-data');
document.body.appendChild(img);
728x90