- Which image formats can it convert?
- PNG, JPEG, GIF, WebP, SVG, ICO, and BMP — all produce a data:image/<type>;base64,<data> URI. SVG can optionally be encoded as URL-encoded text instead.
- Is there a file size limit?
- The practical limit is ~10MB input before browser memory becomes a concern. Files over 5MB should generally not be embedded as data URIs in production HTML due to the 33% size overhead.
- Can I decode a base64 image back to a file?
- Yes — paste a data URI or raw base64 string and click Decode to download the original image file. The MIME type is read from the data URI prefix.