Base64 Image Decoder
Base64 encoding is commonly used to embed images directly into HTML or CSS files (Data URIs) to reduce HTTP requests. However, debugging these long strings can be difficult without visual feedback.
Capabilities
- Auto-Repair: Captures raw Base64 strings and automatically adds the required `data:image/png;base64,` prefix.
- Format Detection: Identifies if the image is PNG, JPEG, GIF, or WebP based on magic bytes.
- Secure: Decoding happens 100% in your browser. No images are uploaded to any server.