Изображение ↔ Base64
Шаги: выберите файлы, настройте, экспортируйте. Пример: цветные блоки. Процесс локальный в браузере без загрузки. encode image to data URL or decode Base64 to file. Лимиты ~25МБ/8192px.
Как это работает
Use Encode to read a file as a data URL, or Decode to paste Base64 and download an image.
Правила
Encode uses readAsDataURL. Decode accepts data:image… or raw Base64 (default MIME image/png).
- Optional strip of the data: prefix for raw Base64.
- Invalid strings show an error.
- Large strings may use more memory.
- Nothing is uploaded.
Пример
Sample encodes a small PNG and shows the data URL in the output box.
Когда полезно
- Embed small icons in HTML/CSS.
- Debug email or markdown image payloads.
- Recover a preview from a Base64 dump.
Frequently asked questions
Uploaded?
No.
Data URL vs raw?
Data URLs include a MIME prefix; raw is only the Base64 body.
Huge files?
Possible but memory-heavy—prefer compress first.
Which MIME on decode?
Taken from the data URL, or image/png for raw.
Animated GIF?
Encoded as a file blob; animation is not edited here.
Вопросы и отзывы
Что-то неясно, сломано или отсутствует? Напишите сообщение ниже — мы читаем каждую заметку об этих инструментах.