1. Supports PNG, GIF, JPG, BMP, ICO photo formats.
2. Converting pictures to Base64 code allows you to quickly insert them into other web pages and editors without uploading files, which is extremely convenient for some small images because you do not need to look for a place to save them.
3. Assuming that the code generated is "data:image/jpeg;base64,..." then you just have to copy it all and then fill it in at the address when you insert the picture.
4. CSS uses:background-image: url("data:image/png; base64,/9/j/4AQSkZJRRBAAGEAABAAD/7gAOQWRvYmUAAAAAAB...");
5. Use in HTML: < img src="data:image/png; base64, 9j/4AQSkZJRRBABAAGEABAAD/7gAOQWRvYmUAAAAB..." / >
Photo conversion Base64, mobile-end development, mandatory HTML5, CSS3 tools, CSS Datauri Base64.
7. The conversion of images to base64 codes, which are generally used on small images in web design development, not only reduces the number of requests for pictures (collected into js, csss codes), but also prevents the creation of 404 image errors due to such issues as relative paths.