diff --git a/README.md b/README.md index 29d8d57..0273187 100644 --- a/README.md +++ b/README.md @@ -34,6 +34,7 @@ Here is the list of all utilities: - [HEX to RGB Converter](https://jam.dev/utilities/hex-to-rgb) - [Convert .env to netlify.toml](https://jam.dev/utilities/env-to-netlify-toml) - [Image to Base64 Converter](https://jam.dev/utilities/image-to-base64) +- [Base64 to Image Converter](https://jam.dev/utilities/base64-to-image) - [JSON to CSV](https://jam.dev/utilities/json-to-csv) - [HAR file viewer](https://jam.dev/utilities/har-file-viewer) - [JSON to YAML](https://jam.dev/utilities/json-to-yaml) diff --git a/components/seo/Base64ToImageSEO.tsx b/components/seo/Base64ToImageSEO.tsx new file mode 100644 index 0000000..1dd4fc3 --- /dev/null +++ b/components/seo/Base64ToImageSEO.tsx @@ -0,0 +1,122 @@ +import Link from "next/link"; + +export default function Base64ToImageSEO() { + return ( +
+
+

Convert Base64 to Image

+

+ Jam's free Base64 to Image converter lets you instantly preview + Base64-encoded image data. Simply paste your Base64 string and see the + decoded image. This tool is perfect for developers working with + embedded images, debugging API responses, or verifying Base64-encoded + image data. +

+
+ +
+

How to Use:

+ +
+ +
+

Related Tools

+

+ Need to convert an image to Base64 instead? Use our{" "} + + Image to Base64 Converter + {" "} + to encode images into Base64 format. For encoding and decoding text + strings, check out our{" "} + + Base64 Encoder/Decoder + + . +

+
+ +
+

Base64 Image Decoding Use Cases

+ +
+ +
+

Understanding Base64 Image Encoding

+

+ Base64 encoding converts binary image data into ASCII text, making it + safe to transmit over text-based protocols like HTTP, email, and JSON. + This is commonly used for embedding small images directly in HTML, + CSS, or JavaScript without requiring separate HTTP requests. +

+

+ A Base64-encoded image typically appears as a data URI in the format: + + data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUA... + +

+

+ This tool accepts both the full data URI format and raw Base64 strings + without the prefix. +

+
+ +
+

FAQs

+ +
+
+ ); +} diff --git a/components/seo/ImageToBase64SEO.tsx b/components/seo/ImageToBase64SEO.tsx index 66b2e91..05a422e 100644 --- a/components/seo/ImageToBase64SEO.tsx +++ b/components/seo/ImageToBase64SEO.tsx @@ -1,3 +1,5 @@ +import Link from "next/link"; + export default function ImageToBase64SEO() { return (
@@ -11,6 +13,20 @@ export default function ImageToBase64SEO() {

+
+

Related Tool

+

+ Have a Base64 string and want to preview the image? Use our{" "} + + Base64 to Image Converter + {" "} + to instantly decode and view Base64-encoded images. +

+
+

How to Use: