Convertidor de imagen a Base64

Convierte un archivo de imagen en una data URL Base64.
Seguro
El procesamiento se realiza en tu dispositivo, por lo que la entrada/salida no se envía a ningún lugar.

Explicación

Base64 is an encoding that represents binary data using 64 ASCII characters.
By converting an image to Base64 (a data URL), you can embed it directly into a web page.

Supported image formats

Supports most image formats that browsers can handle.
JPEG / GIF / PNG / APNG / BMP / WebP / SVG ...

Outputs

#ItemDescriptionFormat
1Base64Data URL schemedata:MIME;base64,Base64 data
2HTMLAn img tag for displaying the image<img src="#1">
3CSSCSS for a background imagebackground-image: url("#1");

Herramientas relacionadas