Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

fiel to base64 python

import base64

with open("yourfile.ext", "rb") as image_file:
    encoded_string = base64.b64encode(image_file.read())
Source by www.kite.com #
 
PREVIOUS NEXT
Tagged: #fiel #python
ADD COMMENT
Topic
Name
1+2 =