背景:
目标:
评论:
答案 0 :(得分:4)
我建议使用PIL(Python图像库)
http://effbot.org/imagingbook/pil-index.htm
将其保存为字符串,然后写入数据库。然后你可以使用字符串butter接口到PIL来读取它。
答案 1 :(得分:0)
>>> from binascii import crc32
>>> with open(filename, "rb") as f:
... data = f.read()
...
>>> crc32(data)
361260080