base64 encode image blob not showing in IE

后端 未结 2 1776
被撕碎了的回忆
被撕碎了的回忆 2021-01-28 23:01
  echo \'\';

This is showing up images gr

相关标签:
2条回答
  • 2021-01-28 23:25

    Most likely old IE or too big image for IE8.

    IE7 and below definitely don't support it. IE9 support inline images just fine. I IE8 have limited support. - Check out http://en.wikipedia.org/wiki/Data_URI_scheme for list.

    0 讨论(0)
  • 2021-01-28 23:26

    Try replacing data:image/jpg/png/jpeg; with either data:image/jpeg; or data:image/png; depending on the format of the image. You can't expect it to be both a PNG and a JPEG.

    0 讨论(0)
提交回复
热议问题