AngularJS - Show byte array content as image

后端 未结 4 1116
眼角桃花
眼角桃花 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:55

    Make sure The Data you are returning to show as a image is converted to ToBase64String

    In your C# code, Use Convert.ToBase64String(imageBytes) and in the view use this

提交回复
热议问题