Embedding Base64 Images

前端 未结 3 867
太阳男子
太阳男子 2020-11-21 05:11

Purely out of curiosity, which browsers does Base64 image embedding work in? What I\'m referring to is this.

I realize it\'s not usually a good solution for most thi

3条回答
  •  离开以前
    2020-11-21 06:03

    Most modern desktop browsers such as Chrome, Mozilla and Internet Explorer support images encoded as data URL. But there are problems displaying data URLs in some mobile browsers: Android Stock Browser and Dolphin Browser won't display embedded JPEGs.

    I reccomend you to use the following tools for online base64 encoding/decoding:

    • Encode to Base64 format

    • Decode from Base64 format

    Check the "Format as Data URL" option to format as a Data URL.

提交回复
热议问题