web-dev-qa-db-ja.com

base64文字列を画像に変換する方法は?

画像をbase64文字列に変換して、Androidデバイスからサーバーに送信します。今、その文字列を画像に戻し、保存する必要がありますデータベース内。

助けがありますか?

33
omarsafwany

これを試して:

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
79
rmunn

保存せずにその画像を表示したい場合:

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)
8

メソッド.decode('base64')を使用して、喜んでください。

イメージのmimetype/extensionを検出する必要もあります。イメージを正しく保存できるため、簡単な例では、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()

そして、この後、必要に応じて保存されたファイルを使用します。

シンプル。とても簡単です。 ;)

5
Fernando Mota

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');
1
Anthony Anyanwu

これはトリックを行う必要があります:

image = open("image.png", "wb")
image.write(base64string.decode('base64'))
image.close()
1
pypat