File size: 158 Bytes
23afe01
 
 
 
 
1
2
3
4
5
import base64

def encode_image(image_path):
    with open(image_path, "rb") as image_file:
        return base64.b64encode(image_file.read()).decode("utf-8")