RanjithkumarPanjabikesan's picture
Update helper.py
a31aa31 verified
raw
history blame contribute delete
466 Bytes
import io
from PIL import Image
import base64
#Define the ConversionFunctions
def image_to_base64_str(pil_image):
byte_arr = io.BytesIO()
pil_image.save(byte_arr, format='PNG')
byte_arr = byte_arr.getvalue()
return str(base64.b64encode(byte_arr).decode('utf-8'))
def base64_to_pil(img_base64):
base64_decoded = base64.b64decode(img_base64)
byte_stream = io.BytesIO(base64_decoded)
pil_image = Image.open(byte_stream)
return pil_image