Tested tool guide
Tested browser tools
Checked August 16, 2026
What Data URL / Base64 Image Converter does, with a checked example
Data URL / Base64 Image Converter switches between image bytes and a textual value such as data:image/png;base64,.... Select an image to obtain a copyable data URL, or paste Base64 image data to reconstruct and inspect the image. The selected file and pasted payload stay in the browser during conversion. The common surprise is size: Base64 is an encoding, not compression. Its payload is roughly one-third larger than the original binary data, with the data URL prefix adding more characters.
Worked example
A concrete input and expected output from the current implementation.
Input
data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///ywAAAAAAQABAAACAUwAOw==
->
Expected output
A decoded GIF image with intrinsic dimensions of 1 by 1 pixel.
The prefix identifies the payload as a Base64-encoded GIF. After decoding, its GIF logical screen descriptor contains 01 00 for both width and height, which represents 1 pixel in each dimension.