I need to generate thumbnail for a picture.It is best to define the thumbnail size.
Exiftool cannot modify the actual image data, only the metadata of a file. You'll want to look at something like ImageMagick to create thumbnails from the command line. After the thumbnail has been created, then exiftool can embed that thumbnail. See this example command (https://exiftool.org/exiftool_pod.html#exiftool--ThumbnailImage-thumb.jpg-dst.jpg).
Quote from: StarGeek on February 24, 2023, 01:58:33 AMExiftool cannot modify the actual image data, only the metadata of a file. You'll want to look at something like ImageMagick to create thumbnails from the command line. After the thumbnail has been created, then exiftool can embed that thumbnail. See this example command (https://exiftool.org/exiftool_pod.html#exiftool--ThumbnailImage-thumb.jpg-dst.jpg).
ok,thanks