Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Kazel
/
demo
like
0
Running
on
Zero
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
demo
/
utils.py
Kazel
all
065b6ad
25 days ago
raw
Copy download link
history
blame
contribute
delete
Safe
159 Bytes
import
base64
def
encode_image
(
image_path
):
with
open
(image_path,
"rb"
)
as
image_file:
return
base64.b64encode(image_file.read()).decode(
'utf-8'
)