Loading Base64 String into Python Image Library(将 Base64 字符串加载到 Python 图像库中)
问题描述
我通过 ajax 将图像作为 base64 字符串发送到 django.在我的 django 视图中,我需要调整图像大小并将其保存在文件系统中.
I'm sending images as base64 string through ajax to django. In my django view I need to resize the image and save it in the file system.
这是一个base64字符串(简体):
Here is a base64 string(simplified):
data:image/jpeg;base64,/9j/4AAQSkZJRg-it-keeps-going-for-few-more-lines=
我尝试使用以下 python 代码在 PIL 中打开它:
I tried to open this in PIL using the below python code:
img = cStringIO.StringIO(request.POST['file'].decode('base64'))
image = Image.open(img)
return HttpResponse(image, content_type='image/jpeg')
我正在尝试将上传的图片显示回来,但是firefox抱怨'图片无法显示,因为它包含错误'
I'm trying to display the uploaded image back, but firefox complains that 'The image cannot be displayed because it contains error'
我无法弄清楚我的错误.
I couldn't figure out my mistake.
解决方案:
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')
推荐答案
解决方案:
将打开的 PIL 图像保存到类似文件的对象可以解决问题.
Saving the opened PIL image to a file-like object solves the issue.
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')
这篇关于将 Base64 字符串加载到 Python 图像库中的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:将 Base64 字符串加载到 Python 图像库中
基础教程推荐
- 筛选NumPy数组 2022-01-01
- 如何在海运重新绘制中自定义标题和y标签 2022-01-01
- Python kivy 入口点 inflateRest2 无法定位 libpng16-16.dll 2022-01-01
- 何时使用 os.name、sys.platform 或 platform.system? 2022-01-01
- 如何让 python 脚本监听来自另一个脚本的输入 2022-01-01
- 用于分类数据的跳跃记号标签 2022-01-01
- 在 Python 中,如果我在一个“with"中返回.块,文件还会关闭吗? 2022-01-01
- 使用PyInstaller后在Windows中打开可执行文件时出错 2022-01-01
- Dask.array.套用_沿_轴:由于额外的元素([1]),使用dask.array的每一行作为另一个函数的输入失败 2022-01-01
- 线程时出现 msgbox 错误,GUI 块 2022-01-01