Python PIL 在 Django TemporaryUploadedFile 上失败

Python PIL fails on Django TemporaryUploadedFile

我有一个成像工具,可以让摄影师上传文件。上传后我想检查上传的图像是否确实是有效的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)也不行。

有人可以帮助我吗?

好的...所以在休息一下并再次查看代码后,我注意到一个文件在传递给视图之前使用相同的上传文件写入(备份保存):

  file.write(image_file.read())

所以文件已经被读取过一次。那次我不得不在 image_file.seek(0) 将它传递给视图之前放置一个 image_file.seek(0) ... 这就是解决方法。最后希望对大家有所帮助。