PIL - 将图像保存为.jpg无法正常工作

时间:2018-03-11 12:51:29

标签: python django pillow

我正在尝试覆盖模型的save()方法来调整图像大小。除保存.jpg图像外,每种格式均有效。它不会保存带有.jpg扩展名的图像。

我阅读了Pillow文档,并且没有JPG格式。

class Business(models.Model):
photo = models.ImageField(_('photo'), storage=OverwriteStorage(),
                          upload_to=image_upload_to, blank=True, null=True)


def save(self, **kwargs):
    """
    Changing dimensions of images if they are to big.
    Set max height or width to 800px depending on the image is portrait or landscape.
    """
    # Opening the uploaded image
    im = Image.open(self.photo)
    print(im)
    output = BytesIO()
    # set the max width or height
    im.thumbnail((800, 800))
    # find the ext of the file
    ext = self.photo.name.split('.')[1].upper()

    if ext in {'JPEG', 'PNG', 'GIF', 'TIFF'}:
        # after modifications, save it to the output
        im.save(output, format=ext, quality=100)
        output.seek(0)
        # change the imagefield value to be the newley modifed image value
        self.photo = InMemoryUploadedFile(output, 'ImageField', "%s.jpg" % self.photo.name.split('.')[0],
                                          'image/jpeg', sys.getsizeof(output), None)
        super(User, self).save()

我不知道我在这里缺少什么。

在自定义用户模型上执行此操作的最佳方法是什么。使用信号,覆盖ImageField或......

感谢任何帮助:)

2 个答案:

答案 0 :(得分:1)

您处理了扩展程序JPEG,但未处理JPG

您可以在if

之前使用类似的内容处理它
if ext == 'JPG':
    ext = 'JPEG'

答案 1 :(得分:0)

重要:您不能将文件另存为.jpg

您必须使用其他扩展名,例如.jpeg

示例: 您必须使用导入的Image对象

from PIL import Image 

def image_ex():
     imagefile = 'images/original-image.jpg'
     new_name = os.path.splitext('{}'.format(filename))[0]+'.jpeg'

     Image.open(imagefile).rotate(270).filter(ImageFilter.DETAIL).save(new_name)

image_ex()

那行得通。只要记住不要另存为.jpg文件扩展名即可。