I need to process large image jpeg files that do not contain thumbnails. I want to create thumbnails and insert into their Exif file, so that I can decide what processing is necessary later on.
On the PIL documentation https://pillow.readthedocs.io/en/3.1.x/reference/Image.html It says:
Image.thumbnail(size, resample=3)
Make this image into a thumbnail. This method modifies the image to contain a thumbnail version of itself, ...
These two sentences are contradictory: is the image now a thumbnail or the image now has an embedded thumbnail? It seems to be the former.