gpt4 book ai didi

python - 使用 Django 从服务器获取多个图像

转载 作者:太空宇宙 更新时间:2023-11-04 09:42:45 25 4
gpt4 key购买 nike

我正在尝试从服务器下载多个图像文件。我的后端使用 Django。单图相关问题已经answered我尝试了代码,它适用于单个图像。在我的应用程序中,我想在单个 HTTP 连接中下载多个图像。

from PIL import Image

img = Image.open('test.jpg')
img2 = Image.open('test2.png')

response = HttpResponse(content_type = 'image/jpeg')
response2 = HttpResponse(content_type = 'image/png')

img.save(response, 'JPEG')
img2.save(response2, 'PNG')

return response #SINGLE

如何同时获取 imgimg2。我想的一种方法是压缩两个图像并将其解压缩到客户端大小,但我认为这不是好的解决方案。有办法处理吗?

最佳答案

我环顾四周,找到了一个使用磁盘上临时 Zip 文件的旧解决方案:https://djangosnippets.org/snippets/365/

它需要一些更新,这应该可以工作(在 django 2.0 上测试过)

import tempfile, zipfile
from django.http import HttpResponse
from wsgiref.util import FileWrapper

def send_zipfile(request):
"""
Create a ZIP file on disk and transmit it in chunks of 8KB,
without loading the whole file into memory. A similar approach can
be used for large dynamic PDF files.
"""
temp = tempfile.TemporaryFile()
archive = zipfile.ZipFile(temp, 'w', zipfile.ZIP_DEFLATED)
for index in range(10):
filename = 'C:/Users/alex1/Desktop/temp.png' # Replace by your files here.

archive.write(filename, 'file%d.png' % index) # 'file%d.png' will be the
# name of the file in the
# zip
archive.close()

temp.seek(0)
wrapper = FileWrapper(temp)

response = HttpResponse(wrapper, content_type='application/zip')
response['Content-Disposition'] = 'attachment; filename=test.zip'

return response

现在,这需要我的 .png 并在我的 .zip 中写入 10 次,然后发送。

关于python - 使用 Django 从服务器获取多个图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51027868/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com