我基本上需要做this但是用Python而不是Javascript。我从socketio连接接收到base64编码的字符串,将其转换为uint8并对其进行处理,然后需要将其转换为base64字符串,以便我可以将其发回。
所以,到目前为止,我已经得到了这个(我从socketio服务器获得了data
字典):
import pickle
import base64
from io import BytesIO
from PIL import Image
base64_image_string = data["image"]
image = Image.open(BytesIO(base64.b64decode(base64_image_string)))
img = np.array(image)
如何撤消此过程以从img
返回base64_image_string
?
更新
我已通过以下方式解决了这个问题(从上面的代码片段继续):
pil_img = Image.fromarray(img)
buff = BytesIO()
pil_img.save(buff, format="JPEG")
new_image_string = base64.b64encode(buff.getvalue()).decode("utf-8")
有些令人困惑,new_image_string
与base64_image_string
不同,但从new_image_string
呈现的图片看起来一样,所以我很满意!
答案 0 :(得分:2)
我相信由于numpy.array
支持缓冲协议,您只需要以下内容:
processed_string = base64.b64encode(img)
所以,例如:
>>> encoded = b"aGVsbG8sIHdvcmxk"
>>> img = np.frombuffer(base64.b64decode(encoded), np.uint8)
>>> img
array([104, 101, 108, 108, 111, 44, 32, 119, 111, 114, 108, 100], dtype=uint8)
>>> img.tobytes()
b'hello, world'
>>> base64.b64encode(img)
b'aGVsbG8sIHdvcmxk'
>>>
答案 1 :(得分:0)
来自http://www.programcreek.com/2013/09/convert-image-to-string-in-python/:
import base64
with open("t.png", "rb") as imageFile:
str = base64.b64encode(imageFile.read())
print str
是二进制读取
答案 2 :(得分:0)
我有同样的问题。经过一番搜索和尝试,我的最终解决方案几乎和你的一样。
唯一的区别是base64编码的字符串是png
格式数据,因此我需要在转换为np.array之前将其从RGBA
更改为RGB
个通道:
image = image.convert ("RGB")
img = np.array(image)
在相反的过程中,您将数据视为JPEG
格式,这可能是new_image_string
与base64_image_string
不一致的原因?