Convert Image To Base64 In Python

Looking for a tutorial on how to convert image to base64 in python then you are at the right place, Today in this article I will show you how to convert image to base64 file using python programming.
To convert image to base64 we will use the python library Base64 it allows us to decode base64 code, It comes preinstalled with python so you don’t have to install it.
Python Code To Convert Image to Base64
# Import base64 module
import base64
# Get image file
image_file = open("my_image.jpg", "rb")
# Convert to base64 string
bs64_str = base64.b64encode(image_file.read())
print(bs64_str)
Above is the python code to convert image to base64. You can run this code and see the result. To run this program you need to have python installed, if you don’t have, then read this: Install and setup python.
Before running this program you need to enter the image file path you want to convert.
Follow this steps to run this program:
- First, create a new folder for this program.
- Open it in a code editor of your choice.
- Create a python file with .py extension.
- Copy the above code and paste it in your file.
- Open a terminal or CMD at folder location
- And type this command python filename.py (Name of your py file).
After running the program you will see that it create a image file in your folder and if you open it you will see the image. Want to know how to convert base64 to image read this article: Convert base64 to image in python.
Summary
This was the tutorial on converting image to base64 in python. I hope you found this tutorial helpful and useful. Do share this tutorial with your friends who might need this or find it helpful.
Here are some more python programs you will find helpful:
- Convert Base64 To Pdf In Python.
- Convert Pdf to Base64 In Python.
- Convert GPX to CSV file in python.
- Convert IPYNB file to python file.
- Convert Wav to mp3 format in python.
- Convert Miles to feet in python.
- Convert Hex To RGB In Python.
- Convert RGB To Hex In Python.
- Convert HTML To Docx In Python.
I hope you found what you were looking for from this python tutorial, and if you want more python tutorials like this, do join our Telegram channel to get updated.
Thanks for reading, have a nice day 🙂