我有一个成像工具,可以让摄影师上传文件。上传后,我要检查上传的图像是否确实是有效的JPEG文件。
所以我写了以下验证函数:
def validate_JPG(self, image):
''' JPEG validation check. '''
# Since PIL offers a more rubust check to validate if the image
# is an JPEG this is used instead of checking the file header.
try:
img = Image.open(image)
if img.format != 'JPEG':
raise JPEGValidationFailed()
else:
return True
except IOError, e:
self.logger.debug('Error in the JPG validation: {}'.format(e))
return False
从获取图像的上传视图中调用该函数:
uploaded_file = self.request.FILES.get('image_file')
image_checksum = sha256(uploaded_file.read()).hexdigest()
if Photos.objects.filter(image_checksum=image_checksum).exists():
return Response({
'uploadError': 'Image already exists.'
}, status=status.HTTP_409_CONFLICT,)
try:
self.logger.debug('Parsing: IPTC and EXIF')
exif, iptc = self.data_parser.process_file(uploaded_file)
except JPEGValidationFailed, e:
raise serializers.ValidationError({
'uploadError': str(e)
})
except Exception, e:
self.logger.error('Error in parsing the IPTC and EXIF data: {}'.format(e))
raise serializers.ValidationError({
'uploadError': 'Something has gone wrong.'
})
此代码一直运行良好,但现在却因某种原因而失败。。使用了Pillow库,Pillow==3.0.0
却无法更新到最新版本。
遇到以下错误:
cannot identify image file <TemporaryUploadedFile: YV180707_7856.jpg (image/jpeg)>
也无法进行image.seek(0)
。
有人可以帮我吗?
答案 0 :(得分:1)
好的...所以,在休息一下并再次查看代码后,我注意到在将文件上传到视图之前,文件已写入相同的上传文件(备份保存):
file.write(image_file.read())
因此该文件已被读取一次。我不得不将image_file.seek(0)
放在之前传递给视图的想法就是这样。希望它最终能对某人有所帮助。