Convert Image To String

  • Here First We Import Base64 Method To Encode The Given Image 
  • Next, We Opened Our Image File In rb Mode Which Is Read In Binary Mode.
  • The We Read Our Image With image2.read() Which Reads The Image And Encode it Using b64encode() It Is Method That Is Used To Encode Data Into Base64 
  • Finally, we Print Our Encoded String 

Image used:

Python3




import base64
  
  
with open("food.jpeg", "rb") as image2string:
    converted_string = base64.b64encode(image2string.read())
print(converted_string)
  
with open('encode.bin', "wb") as file:
    file.write(converted_string)


Output:

This Is The Output Of  Image That is Converted To String Using Base64

Here We got the output but if you notice in Starting Of String we get this b’ This We Can Say As Base64 Encoded String in Pair of single quotation. So if we want to remove that we can do the Following By Replacing The Print Statement With print(my_string.decode(‘utf-8’))

Python – Convert Image to String and vice-versa

To store or transfer an Image to some we need to convert it into a string such that the string should portray the image which we give as input. So In Python to do this Operation, it is a straight forward task not complicated because we have a lot of functions in Python available.

Similar Reads

Convert Image To String

Here First We Import “Base64“ Method To Encode The Given Image  Next, We Opened Our Image File In rb Mode Which Is Read In Binary Mode. The We Read Our Image With image2.read() Which Reads The Image And Encode it Using b64encode() It Is Method That Is Used To Encode Data Into Base64  Finally, we Print Our Encoded String...

Convert String To Image

...

Contact Us