If the image is large, conversion may take longer
When writing web pages, there are typically two ways to incorporate an image.
https://www.codeeeee.com/.../come.png
Compared to using a URI, encoding the image in base64 mainly reduces network requests. Using the URI method, the browser needs to send an http(s) request to fetch the image content; whereas, with base64 encoding written into the document, the image downloads with the html document, eliminating the need for additional requests. However, base64 data is generally larger than the original image. Therefore, for larger images, one should weigh whether the benefits outweigh the drawbacks when using base64.