69

我正在将图像转换为base64字符串并将其从 android 设备发送到服务器。现在,我需要将该字符串更改回图像并将其保存在数据库中。

有什么帮助吗?

4

5 回答 5

141

试试这个:

import base64
imgdata = base64.b64decode(imgstring)
filename = 'some_image.jpg'  # I assume you have a way of picking unique filenames
with open(filename, 'wb') as f:
    f.write(imgdata)
# f gets closed when you exit the with statement
# Now save the value of filename to your database
于 2013-04-25T12:06:31.547 回答
25

返回转换后的图像而不保存:

from PIL import Image
import cv2

# Take in base64 string and return cv image
def stringToRGB(base64_string):
    imgdata = base64.b64decode(str(base64_string))
    image = Image.open(io.BytesIO(imgdata))
    return cv2.cvtColor(np.array(image), cv2.COLOR_BGR2RGB)
于 2018-01-02T06:19:37.263 回答
8

只需使用该方法.decode('base64')并获得快乐。

您还需要检测图像的 mimetype/扩展名,因为您可以正确保存它,在一个简短的示例中,您可以将以下代码用于 django 视图:

def receive_image(req):
    image_filename = req.REQUEST["image_filename"] # A field from the Android device
    image_data = req.REQUEST["image_data"].decode("base64") # The data image
    handler = open(image_filename, "wb+")
    handler.write(image_data)
    handler.close()

然后,根据需要使用保存的文件。

简单的。非常简单。;)

于 2013-04-25T12:07:53.053 回答
3

这应该可以解决问题:

image = open("image.png", "wb")
image.write(base64string.decode('base64'))
image.close()
于 2013-04-25T12:05:14.860 回答
2

您可以尝试使用 open-cv 来保存文件,因为它有助于在内部进行图像类型转换。示例代码:

import cv2
import numpy as np

def save(encoded_data, filename):
    nparr = np.fromstring(encoded_data.decode('base64'), np.uint8)
    img = cv2.imdecode(nparr, cv2.IMREAD_ANYCOLOR)
    return cv2.imwrite(filename, img)

然后在你的代码中的某个地方你可以像这样使用它:

save(base_64_string, 'testfile.png');
save(base_64_string, 'testfile.jpg');
save(base_64_string, 'testfile.bmp');
于 2018-05-23T09:04:21.077 回答