lindsay-qu's picture
Upload 92 files
58974f8
raw
history blame
No virus
228 Bytes
import base64
def encode_image(image_path):
if image_path:
with open(image_path, "rb") as image_file:
return base64.b64encode(image_file.read()).decode('utf-8')
else:
return "No image inputs"