Image Tools100% private
Base64 to Image Decoder
Decode Base64 data URIs back into downloadable image files.
How it works
- 1Paste Base64Paste a data URI string (starts with data:image/...;base64,...).
- 2DecodeThe string is decoded into an image file.
- 3DownloadPreview and download the decoded image.
Frequently asked questions
What format should the input be?
A data URI: data:image/png;base64,iVBORw0KGgo... - the standard format for Base64-encoded images.
Where do I find Base64 image strings?
From HTML img src attributes, CSS background-image values, or JSON API responses containing embedded images.