File size: 466 Bytes
f8bab5c f32c138 f8bab5c |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
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
|