Sorl-thumbnail会产生黑线和不受欢迎的作物

时间:2017-03-14 06:05:01

标签: python django sorl-thumbnail

我在django项目中使用Sorl Thumbnail 12.4a1,Pillow 4.0.0

它适用于大多数图像,但对于其中一些图像,我遇到了意想不到的行为。

原始图片是人像jpg 765x1110

运行此代码后:get_thumbnail('/ media / ryzsUIKZVUc.jpg','464',upscale = False)

我收到一张464x320的图像,左右两侧有黑色背景,顶部和底部都有裁剪

这是原作: https://www.dropbox.com/s/ia7906ec19xjhro/ryzsUIKZVUc.jpg?dl=0

这就是结果:https://www.dropbox.com/s/adgut5zkw4xln6e/62b2439654a00312defafddb862eda9b.jpg?dl=0

P.S。 我试图将原版作为图像上传,但它会自动转换为肖像..这有什么意义吗?

2 个答案:

答案 0 :(得分:0)

由于exif标签而出现框架。图像的大小未正确确定。

您可以使用exiftool

查看此信息
$ exiftool ryzsUIKZVUc.jpg 
ExifTool Version Number         : 10.10
File Name                       : ryzsUIKZVUc.jpg
Directory                       : .
File Size                       : 210 kB
File Modification Date/Time     : 2017:03:30 12:33:51+03:00
File Access Date/Time           : 2017:03:30 12:33:55+03:00
File Inode Change Date/Time     : 2017:03:30 12:33:51+03:00
File Permissions                : rw-rw-r--
File Type                       : JPEG
File Type Extension             : jpg
MIME Type                       : image/jpeg
JFIF Version                    : 1.01
Comment                         : CREATOR: gd-jpeg v1.0 (using IJG JPEG v62), quality = 99.
Exif Byte Order                 : Big-endian (Motorola, MM)
Processing Software             : Windows Photo Editor 10.0.10011.16384
Orientation                     : Rotate 270 CW
Software                        : Windows Photo Editor 10.0.10011.16384
Modify Date                     : 2017:03:07 09:28:15
Date/Time Original              : 2017:03:07 09:27:46
Create Date                     : 2017:03:07 09:27:46
Sub Sec Time Original           : 00
Sub Sec Time Digitized          : 00
Color Space                     : sRGB
Padding                         : (Binary data 2060 bytes, use -b option to extract)
Compression                     : JPEG (old-style)
X Resolution                    : 96
Y Resolution                    : 96
Resolution Unit                 : inches
Thumbnail Offset                : 4608
Thumbnail Length                : 8169
About                           : uuid:faf5bdd5-ba3d-11da-ad31-d33d75182f1b
Creator Tool                    : Windows Photo Editor 10.0.10011.16384
Image Width                     : 1110
Image Height                    : 765
Encoding Process                : Baseline DCT, Huffman coding
Bits Per Sample                 : 8
Color Components                : 3
Y Cb Cr Sub Sampling            : YCbCr4:2:0 (2 2)
Image Size                      : 1110x765
Megapixels                      : 0.849
Create Date                     : 2017:03:07 09:27:46.00
Date/Time Original              : 2017:03:07 09:27:46.00
Thumbnail Image                 : (Binary data 8169 bytes, use -b option to extract)

或使用PIL

>>> from PIL import Image
>>> from PIL.ExifTags import TAGS
>>> 
>>> im = Image.open('ryzsUIKZVUc.jpg')
>>> exif = im._getexif()
>>> data = {}
>>> 
>>> for tag, value in exif.items():
...     decoded = TAGS.get(tag, tag)
...     data[decoded] = value
... 
>>> 
>>> data['Orientation']
8

要解决此问题,您可以在生成预览之前(旋转图像)保存没有此标记的图片。

例如,

def orient(image_path):
    """ Check are this img oriented """
    img = Image.open(image_path)
    # check is has exif data
    if not hasattr(img, '_getexif') or img._getexif() is None:
        return
    # if has information - try rotate img
    orientation = img._getexif().get(0x112)
    rotate_values = {3: 180, 6: 270, 8: 90}
    if orientation in rotate_values:
        img = img.rotate(rotate_values[orientation], expand=True)
    img.save(image_path, quality=100)

或者更轻松,更改设置THUMBNAIL_ORIENTATION = False。在这种情况下,图像只是停止旋转。并且不再创建黑线。

答案 1 :(得分:0)

此错误已在github上的存储库中修复。 这个PR https://github.com/mariocesar/sorl-thumbnail/pull/233

但是在pypi仍然是一个旧的包。 https://pypi.python.org/pypi/sorl-thumbnail/12.4a1已于2015-11-17更新

要使用新版本,请直接从github安装软件包。

pip install -e git+https://github.com/mariocesar/sorl-thumbnail.git#egg=sorl-thumbnail

安装后,您需要清除图像缓存

$ rm -rf path/to/media/cache/
$ python manage.py thumbnail clear
$ python manage.py thumbnail cleanup