File size: 174 Bytes
98ed57d
 
 
 
 
 
1
2
3
4
5
6
import base64

def to_base64(uploaded_file):
    file_buffer = uploaded_file.read()
    b64 = base64.b64encode(file_buffer).decode()
    return f"data:image/png;base64,{b64}"