Spaces:
Sleeping
Sleeping
File size: 174 Bytes
03d8f07 |
1 2 3 4 5 6 |
import base64
def encode_image_to_base64(image_path):
with open(image_path, "rb") as image_file:
return base64.b64encode(image_file.read()).decode('utf-8')
|