我通过 ajax 将图像作为 base64 字符串发送到 django。在我的 django 视图中,我需要调整图像大小并将其保存在文件系统中。
这是一个base64字符串(简化):
data:image/jpeg;base64,/9j/4AAQSkZJRg-it-keeps-going-for-few-more-lines=
我尝试使用以下 python 代码在 PIL 中打开它:
img = cStringIO.StringIO(request.POST['file'].decode('base64'))
image = Image.open(img)
return HttpResponse(image, content_type='image/jpeg')
我正在尝试显示上传的图像,但 Firefox 抱怨说'The image cannot be displayed because it contains error'
我无法弄清楚我的错误。
解决方案:
pic = cStringIO.StringIO()
image_string = cStringIO.StringIO(base64.b64decode(request.POST['file']))
image = Image.open(image_string)
image.save(pic, image.format, quality = 100)
pic.seek(0)
return HttpResponse(pic, content_type='image/jpeg')