ケース例
Image Data URL example
入力: logo.png
操作: Upload the image and copy the Data URL
出力: data:image/png;base64,iVBORw0KGgo...
画像を Base64 または Data URL に変換し、CSS、HTML、メール、API テストに使います。
入力: logo.png
操作: Upload the image and copy the Data URL
出力: data:image/png;base64,iVBORw0KGgo...
Use Base64 for small assets; large images can bloat HTML or CSS.
Data URL includes the MIME prefix; raw Base64 only contains the encoded data.
Check the preview to make sure the encoded image still matches the source.
Use it for small inline assets, email templates, demos, or quick API tests.
Use Data URL for browser rendering and raw Base64 when a system requests only encoded data.
They can, but the resulting text becomes very long and may hurt performance.