python 将图像编码/解码到Base64
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 将图像编码/解码到Base64相关的知识,希望对你有一定的参考价值。
import base64
# encode
with open("image.jpg", "rb") as image_file:
b64_img = base64.b64encode(image_file.read()) #bytes array
# decode
"""
# convert to bytearray if needed
b64_img = b64_img.encode()
b64_img = b64_img[2:]
"""
nparr = np.frombuffer(base64.decodebytes(bytes), np.uint8)
img = cv2.imdecode(nparr, cv2.IMREAD_GRAYSCALE)
以上是关于python 将图像编码/解码到Base64的主要内容,如果未能解决你的问题,请参考以下文章
在python中将base64编码的图像解码为原始图像
在 laravel 中解码和移动 base64 编码的图像
python:将base64编码的png图像转换为jpg
SSE图像算法优化系列三十一:Base64编码和解码算法的指令集优化(C#自带函数的3到4倍速度)。
编码为旋转 90 度的 base64 图像后
用python实现base64编码与解码