• ARTICLE
  • STRING
  • CONVERTER
  • ENCRYPT
  • NETWORK
  • MORE
    CHART
    MATH
    COORDINATE
    IMAGE
    FILE
  • ARTICLE
    STRING
    CONVERTER
    ENCRYPT
    NETWORK
    MORE
    CHART
    MATH
    COORDINATE
    IMAGE
    FILE
logo Online Tools
0 Comments Favorite Copy Link Share

Image Base64 Converter


Note: using the browser API, your files will not be uploaded to the cloud.

click or drag the file to here

Image Base64 Converter-summary

Converts the selected picture to a Base64 string, or converts the specified Base64 string to a picture. The converted string contains MIME type, which can be used directly by the front end. If you need to get a pure Base64 string that does not contain mime, use the File base64 converter.

Image Base64 Converter-instructions
The Image to Base64 tool provides the function of converting images to Base64 strings online. This tool does not limit the file size. The supported file formats include: jpg, jpeg, png, gif, svg, webp, bmp, ico. The image is converted to Base64 string, which can be directly embedded in the document, which is conducive to reducing network requests, but increases the file size by 33%. When you use the Base64 to Image function, fill in the base64 string in the base64 content input box in the format of data:image/jpeg; base64,/9j/APZ8... .

Use Base64 Image in CSS and HTML

.test{
  background-image: url("data:image/jpg;base64,/9j/APZ8...");
}
            
<img src="data:image/jpg;base64,/9j/APZ8..."/>