👀 Remove thumbnail from cropped image

This commit is contained in:
Maxr1998 2023-09-21 23:29:52 +02:00
parent 54937caadb
commit e461f38abd
No known key found for this signature in database
GPG key ID: ECECF0D4F4816C81

View file

@ -183,7 +183,7 @@ class CropTask(object):
print(" ".join(command))
subprocess.call(command)
subprocess.call(["exiftool", "-overwrite_original", "-Orientation=1", "-n", target])
subprocess.call(["exiftool", "-overwrite_original", "-Orientation=1", "-ifd1:all=", "-n", target])
self.log.log(_("Cropped to %s") % shortname)
class DragManagerBase(object):