ItSolutionStuff.com

How to Convert base64 to Image in Python?

By Hardik Savani • October 30, 2023
Python

Hi Dev,

In this example, you will learn how to convert base64 to image in python. I would like to show you python convert base64 to image. If you have a question about how to convert base64 string to image in python then I will give a simple example with a solution. you will learn how to decode base64 string to image in python.

If you are looking to convert base64 string to an image in python then I will help you with that. I will give you a very simple example, we will take one variable "imageData" with base64 string and then convert it into the image. we will use base64 library. So, without further ado, let's see simple examples: You can use these examples with python3 (Python 3) version.

Example:

main.py

# Import base64 Module
import base64
   
# Image Base64 String
imageData = "iVBORw0KGgoAAAANSUhEUgAAAZAAAAGQCAIAAAAP3...";
    
# Decode base64 String Data
decodedData = base64.b64decode((imageData))
  
# Write Image from Base64 File
imgFile = open('image.png', 'wb')
imgFile.write(decodedData)
imgFile.close()

Output:

I hope it can help you...

Tags: Python
Hardik Savani

Hardik Savani

I'm a full-stack developer, entrepreneur, and founder of ItSolutionStuff.com. Passionate about PHP, Laravel, JavaScript, and helping developers grow.

📺 Subscribe on YouTube

We Are Recommending You

How to Get Length of Dictionary Python?

Read Now →

How to Check if Python Dictionary is Empty or Not?

Read Now →

Python Pandas Create Excel File Example

Read Now →

How to Check If Element is Present in List Python?

Read Now →

Python Create Text File in Specific Directory Example

Read Now →

How to Create Multiline Text File in Python?

Read Now →

Python Convert List into String with Commas Example

Read Now →

Python Delete File if Exists Example

Read Now →

Python Post Request with Json File Example

Read Now →

Python Post Request with Bearer Token Example

Read Now →

Python Get First Date of Next Month Example

Read Now →

Python Create Zip Archive from Directory Example

Read Now →

How to Add Minutes to DateTime in Python?

Read Now →

Python Subtract Hours from Datetime Example

Read Now →