gpt4 book ai didi

python - Pylons 在 Windows 上上传扭曲的图像

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

我正在 Pylons 中创建一个网络应用程序,并且正在进行图像上传操作。目前正在我的 Windows 机器上使用 egg:paste#http 运行,使用 pylons 文档快速入门中描述的基本开发配置。

当我将图像发布到我的应用程序,然后将图像移动到网络根目录,然后将上传的图像拉到浏览器中时,图像出现扭曲。这是我上传 Yahoo! 的 GIF 时得到的结果 Logo ,但大多数文件根本不显示在浏览器中,可能是因为损坏:

distorted yahoo logo http://www.freeimagehosting.net/uploads/d2c92aef00.png

这是我正在使用的基本代码(直接来自 pylons 文档):

os_path = os.path.join(config.images_dir, request.POST['image'].filename)
save_file = open(os_path, 'w')
shutil.copyfileobj(request.POST['image'].file, save_file)
request.POST['image'].file.close()
save_file.close()

request.POST['image'] 是一个 cgi.FieldStorage 对象。我认为这可能是 Windows 行结尾的问题,但我不确定如何检查或更正它。是什么导致我上传的图片失真/损坏?

最佳答案

您可能只是缺少有效地将文件写入二进制文件的“b”(二进制)标志:

save_file = open(os_path, 'wb')

但我不明白为什么你需要 shutil.copyfileobj 调用,为什么不这样做:

file_save_path = os.path.join(config.images_dir, request.POST['image'].filename)
file_contents = request.POST['image'].file.read()

# insert sanity checks here...

save_file = open(file_save_path, 'wb')
save_file.write(file_contents)
save_file.close()

或者使最后三行更像 pythonic(确保即使写入失败也关闭文件句柄):

with open(file_save_path, 'wb') as save_file:
save_file.write(file_contents)

你可能需要一个

from __future__ import with_statements

如果您使用的是 Python 2.6,则位于文件顶部。

关于python - Pylons 在 Windows 上上传扭曲的图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2113126/

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