AngularJS - Show byte array content as image

后端 未结 4 1125
眼角桃花
眼角桃花 2020-12-03 03:12

I\'m searching into my database a image as a byte array. I want to show this content as file using the markup image, but it doesn\'t work here.

// C         


        
4条回答
  •  天涯浪人
    2020-12-03 03:52

    The src attribute of img points to the source file of the image, it doesn't contain the actual source data. You can't do what you want this way; instead, you would have to write an image decoder in JavaScript (e.g., https://github.com/devongovett/png.js), which outputs into a canvas element.

提交回复
热议问题