我需要处理不包含缩略图的大图像jpeg文件。我想创建缩略图并将其插入其Exif文件中,以便稍后可以确定需要进行哪些处理。
在PIL文档https://pillow.readthedocs.io/en/3.1.x/reference/Image.html上说:
Image.thumbnail(size, resample=3)
Make this image into a thumbnail. This method modifies the image to contain a thumbnail version of itself, ...
这两个句子是矛盾的:该图像现在是缩略图还是该图像现在嵌入了缩略图?似乎是前者。