-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathutil.py
36 lines (27 loc) · 874 Bytes
/
util.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
import re
import base64
import numpy as np
from PIL import Image
from io import BytesIO
def base64_to_bytes(img_base64):
"""
Convert base64 image data to bytes
"""
image_data = re.sub('^data:image/.+;base64,', '', img_base64)
bytes_image = BytesIO(base64.b64decode(image_data))
return bytes_image
def base64_to_pil(img_base64):
"""
Convert base64 image data to PIL image
"""
image_data = re.sub('^data:image/.+;base64,', '', img_base64)
pil_image = Image.open(BytesIO(base64.b64decode(image_data)))
return pil_image
def np_to_base64(img_np):
"""
Convert numpy image (RGB) to base64 string
"""
img = Image.fromarray(img_np.astype('uint8'), 'RGB')
buffered = BytesIO()
img.save(buffered, format="PNG")
return u"data:image/png;base64," + base64.b64encode(buffered.getvalue()).decode("ascii")