我已经创建了一个网站,正在使用sorl-缩略图调整大小的图像上传。大多数图像都在调整大小,没有任何问题,但对于少数人来说,会出现以下错误:
Caught IOError while rendering: not enough data
Request Method: GET
Request URL: http://localhost:8000/user/nash22/photographs/
Django Version: 1.3.1
Exception Type: TemplateSyntaxError
Exception Value:
Caught IOError while rendering: not enough data
Exception Location: /usr/local/lib/python2.7/site-packages/PIL/TiffImagePlugin.py in load, line 382
Python Executable: /usr/local/bin/python
Python Version: 2.7.1
我在谷歌上搜索,但没有找到任何相关的答案。有谁能帮我一下发生了什么事,我怎样才能解决它?谢谢。
编辑
完全回溯
跟踪(最近一次调用):
文件"/lib/python2.7/django/core/handlers/base.py",第111行,在get_response响应=回调(请求、*callback_args、**callback_kwargs)中
文件"/home/swaroop/project/apps/photography/views.py",第702行,showPhoto context_instance=RequestContext(请求))
文件"/lib/python2.7/django/shortcuts/init.py",第20行,在render_to_response返回HttpResponse(loader.render_to_string(*args,**kwargs),**httpresponse_kwargs)中
render_to_string返回t.render(context_instance)中的文件"/lib/python2.7/django/template/loader.py",第188行
文件"/lib/python2.7/django/template/base.py",第123行,在呈现返回self._render(上下文)
_render返回self.nodelist.render(上下文)中的文件"/lib/python2.7/django/template/base.py",第117行
文件"/lib/python2.7/django/template/base.py",第744行,在呈现bits.append(self.render_node(节点,上下文))中
render_node返回node.render(上下文)中的文件"/lib/python2.7/django/template/base.py",第757行
文件"/lib/python2.7/django/template/loader_tags.py",第127行,在呈现返回compiled_parent._render(上下文)中
_render返回self.nodelist.render(上下文)中的文件"/lib/python2.7/django/template/base.py",第117行
文件"/lib/python2.7/django/template/base.py",第744行,在呈现bits.append(self.render_node(节点,上下文))中
render_node返回node.render(上下文)中的文件"/lib/python2.7/django/template/base.py",第757行
文件"/lib/python2.7/django/template/loader_tags.py",第64行,在呈现结果=block.nodelist.render(上下文)中
文件"/lib/python2.7/django/template/base.py",第744行,在呈现bits.append(self.render_node(节点,上下文))中
render_node返回node.render(上下文)中的文件"/lib/python2.7/django/template/base.py",第757行
文件"/lib/python2.7/sorl/thumbnail/templatetags/thumbnail.py",第45行,在呈现返回self._render(上下文)中
文件"/lib/python2.7/sorl/thumbnail/templatetags/thumbnail.py",第97行,在呈现文件、几何图形、**选项中
文件“/lib/python2.7/sorl/缩略图/base.py”,第61行,get_thumbnail缩略图)
文件“/lib/python2.7/sorl/缩略图/base.py”,第86行,在_create_thumbnail image = default.engine.create(source_image,几何学,选项)中
文件"/lib/python2.7/sorl/thumbnail/engines/base.py",第15行,在create =self.orientation(图像、几何图形、选项)中
文件"/lib/python2.7/sorl/thumbnail/engines/base.py",第26行,在方向返回self._orientation(图像)
文件"/lib/python2.7/sorl/thumbnail/engines/pil_engine.py",第29行,在_orientation exif = image._getexif()中
文件"/usr/local/lib/python2.7/site-packages/PIL/JpegImagePlugin.py",第381行,在_getexif info.load(文件)中
文件"/usr/local/lib/python2.7/site-packages/PIL/TiffImagePlugin.py",第382行,在load IOError中,“数据不够”
IOError:数据不足
发布于 2012-05-14 04:41:50
更新
image._getexif
被认为是高度实验性的。参考sorl-thumbnail和issue #98,您可以将代码更新为
def _orientation(self, image):
try:
exif = image._getexif()
except (AttributeError, IOError):
exif = None
这是由于PIL试图加载损坏或可能不支持的TIFF文件造成的。
通常,当您使用forms.ImageField
时,Django会检查上传图像的正确性。
因此,你需要:
forms.ImageField
( models.ImageField
的默认设置)在视图中处理w/上传,从PIL导入图像Image.open(path).load()
。
此外,您还可以限制用户上传普通格式,如jpeg/png/gif,而不是TIFF。
https://stackoverflow.com/questions/10583265
复制