1. Support PNG, GIF, JPG, BMP, ICO image formats.
2.Converting images to Base64 encoding allows you to quickly insert images into other web pages, editors without uploading files. This is extremely handy for small images because you don't need to find another place to save the image.
3. Assuming the generated code is "data:image/jpeg;base64, ....." then you just need to copy it all and fill in the address with this code when you insert the image.
4. CSS use: background-image: url("data:image/png;base64,,/9j/4AAQSkZJRgABAgEAYABgAAD/7gAOQWRvYmUAZAAAAAAB...") The following is an example of the use of this method.
5. HTML use: <img src="data:image/png;base64,,/9j/4AAQSkZJRgABAgEAYABgAAD/7gAOQWRvYmUAZAAAAAAAAB..." />
6.Convert Image to Base64, a must-have tool for mobile development, HTML5, CSS3, CSS DataURI Base64 tool.
7.Convert images to base64 encoding, in web design and development, generally used for small images, not only to reduce the number of requests for images (collection of js, css code), but also to prevent because of some relative paths and other issues lead to picture 404 errors.