How to generate an EXIF thumbnail for a JPEG?
I have a Canon Selphy printer and when trying to print images that have been edited on my computer a question mark appears in the viewer screen. It appears that the EXIF thumbnail in the image has been stripped out.
Is there an application to generate the EXIF thumbnail for an image?
I have tried using JHead but that only regenerates the thumbail if there is already one present.
jpeg exif
add a comment |
I have a Canon Selphy printer and when trying to print images that have been edited on my computer a question mark appears in the viewer screen. It appears that the EXIF thumbnail in the image has been stripped out.
Is there an application to generate the EXIF thumbnail for an image?
I have tried using JHead but that only regenerates the thumbail if there is already one present.
jpeg exif
add a comment |
I have a Canon Selphy printer and when trying to print images that have been edited on my computer a question mark appears in the viewer screen. It appears that the EXIF thumbnail in the image has been stripped out.
Is there an application to generate the EXIF thumbnail for an image?
I have tried using JHead but that only regenerates the thumbail if there is already one present.
jpeg exif
I have a Canon Selphy printer and when trying to print images that have been edited on my computer a question mark appears in the viewer screen. It appears that the EXIF thumbnail in the image has been stripped out.
Is there an application to generate the EXIF thumbnail for an image?
I have tried using JHead but that only regenerates the thumbail if there is already one present.
jpeg exif
jpeg exif
edited Oct 9 '15 at 4:33
JakeGould
32k1098140
32k1098140
asked Dec 9 '10 at 10:02
PramPram
273139
273139
add a comment |
add a comment |
4 Answers
4
active
oldest
votes
You can use the -g option of exiftran:
exiftran -g -i image.jpg
The -i option does in-place modification to the file.
add a comment |
You can use nconvert:
nconvert -overwrite -buildexifthumb foo.jpg
I did this, but verexif.com still seems to give There is no thumbnail.
– Leo
Oct 10 '17 at 15:17
add a comment |
The task can be completed with exiftool (for updating EXIF) and ImageMagick (for crating thumbnails).
First let's download and install/extract both programs. Put exiftool to any folder and include it to PATH (Imagemagick folder was included to PATH during instalation). Next run cmd change to a folder with images and run
for /r %a in (*.jpg) do (Magick convert "%a" -resize 256x256 thmb.jpg & exiftool(-k).exe "-ThumbnailImage<=thmb.jpg" "%a")
or with % doubled to be used in .bat
for /r %%a in (*.jpg) do (Magick convert "%%a" -resize 256x256 thmb.jpg & exiftool(-k).exe "-ThumbnailImage<=thmb.jpg" "%%a")
Explanation
convert creates 256px thumbnail thmb.jpg and exiftool writes it to original .jpg
Note
exiftool copies original file to .jpg_original which is supposed to be deleted after checking that the update was completed succesfully.
add a comment |
Try this simple tool called Exif Thumbnail Creator. It's a software to create or reconstruct EXIF thumbnails.
1
The download links seems to be down.
– Leo
Oct 10 '17 at 15:19
add a comment |
protected by JakeGould Oct 9 '15 at 4:37
Thank you for your interest in this question.
Because it has attracted low-quality or spam answers that had to be removed, posting an answer now requires 10 reputation on this site (the association bonus does not count).
Would you like to answer one of these unanswered questions instead?
4 Answers
4
active
oldest
votes
4 Answers
4
active
oldest
votes
active
oldest
votes
active
oldest
votes
You can use the -g option of exiftran:
exiftran -g -i image.jpg
The -i option does in-place modification to the file.
add a comment |
You can use the -g option of exiftran:
exiftran -g -i image.jpg
The -i option does in-place modification to the file.
add a comment |
You can use the -g option of exiftran:
exiftran -g -i image.jpg
The -i option does in-place modification to the file.
You can use the -g option of exiftran:
exiftran -g -i image.jpg
The -i option does in-place modification to the file.
answered Apr 25 '16 at 7:19
SampoSampo
32928
32928
add a comment |
add a comment |
You can use nconvert:
nconvert -overwrite -buildexifthumb foo.jpg
I did this, but verexif.com still seems to give There is no thumbnail.
– Leo
Oct 10 '17 at 15:17
add a comment |
You can use nconvert:
nconvert -overwrite -buildexifthumb foo.jpg
I did this, but verexif.com still seems to give There is no thumbnail.
– Leo
Oct 10 '17 at 15:17
add a comment |
You can use nconvert:
nconvert -overwrite -buildexifthumb foo.jpg
You can use nconvert:
nconvert -overwrite -buildexifthumb foo.jpg
answered Dec 9 '10 at 10:19
JoeyJoey
33.3k987118
33.3k987118
I did this, but verexif.com still seems to give There is no thumbnail.
– Leo
Oct 10 '17 at 15:17
add a comment |
I did this, but verexif.com still seems to give There is no thumbnail.
– Leo
Oct 10 '17 at 15:17
I did this, but verexif.com still seems to give There is no thumbnail.
– Leo
Oct 10 '17 at 15:17
I did this, but verexif.com still seems to give There is no thumbnail.
– Leo
Oct 10 '17 at 15:17
add a comment |
The task can be completed with exiftool (for updating EXIF) and ImageMagick (for crating thumbnails).
First let's download and install/extract both programs. Put exiftool to any folder and include it to PATH (Imagemagick folder was included to PATH during instalation). Next run cmd change to a folder with images and run
for /r %a in (*.jpg) do (Magick convert "%a" -resize 256x256 thmb.jpg & exiftool(-k).exe "-ThumbnailImage<=thmb.jpg" "%a")
or with % doubled to be used in .bat
for /r %%a in (*.jpg) do (Magick convert "%%a" -resize 256x256 thmb.jpg & exiftool(-k).exe "-ThumbnailImage<=thmb.jpg" "%%a")
Explanation
convert creates 256px thumbnail thmb.jpg and exiftool writes it to original .jpg
Note
exiftool copies original file to .jpg_original which is supposed to be deleted after checking that the update was completed succesfully.
add a comment |
The task can be completed with exiftool (for updating EXIF) and ImageMagick (for crating thumbnails).
First let's download and install/extract both programs. Put exiftool to any folder and include it to PATH (Imagemagick folder was included to PATH during instalation). Next run cmd change to a folder with images and run
for /r %a in (*.jpg) do (Magick convert "%a" -resize 256x256 thmb.jpg & exiftool(-k).exe "-ThumbnailImage<=thmb.jpg" "%a")
or with % doubled to be used in .bat
for /r %%a in (*.jpg) do (Magick convert "%%a" -resize 256x256 thmb.jpg & exiftool(-k).exe "-ThumbnailImage<=thmb.jpg" "%%a")
Explanation
convert creates 256px thumbnail thmb.jpg and exiftool writes it to original .jpg
Note
exiftool copies original file to .jpg_original which is supposed to be deleted after checking that the update was completed succesfully.
add a comment |
The task can be completed with exiftool (for updating EXIF) and ImageMagick (for crating thumbnails).
First let's download and install/extract both programs. Put exiftool to any folder and include it to PATH (Imagemagick folder was included to PATH during instalation). Next run cmd change to a folder with images and run
for /r %a in (*.jpg) do (Magick convert "%a" -resize 256x256 thmb.jpg & exiftool(-k).exe "-ThumbnailImage<=thmb.jpg" "%a")
or with % doubled to be used in .bat
for /r %%a in (*.jpg) do (Magick convert "%%a" -resize 256x256 thmb.jpg & exiftool(-k).exe "-ThumbnailImage<=thmb.jpg" "%%a")
Explanation
convert creates 256px thumbnail thmb.jpg and exiftool writes it to original .jpg
Note
exiftool copies original file to .jpg_original which is supposed to be deleted after checking that the update was completed succesfully.
The task can be completed with exiftool (for updating EXIF) and ImageMagick (for crating thumbnails).
First let's download and install/extract both programs. Put exiftool to any folder and include it to PATH (Imagemagick folder was included to PATH during instalation). Next run cmd change to a folder with images and run
for /r %a in (*.jpg) do (Magick convert "%a" -resize 256x256 thmb.jpg & exiftool(-k).exe "-ThumbnailImage<=thmb.jpg" "%a")
or with % doubled to be used in .bat
for /r %%a in (*.jpg) do (Magick convert "%%a" -resize 256x256 thmb.jpg & exiftool(-k).exe "-ThumbnailImage<=thmb.jpg" "%%a")
Explanation
convert creates 256px thumbnail thmb.jpg and exiftool writes it to original .jpg
Note
exiftool copies original file to .jpg_original which is supposed to be deleted after checking that the update was completed succesfully.
answered Feb 3 at 16:12
IvanHIvanH
1481214
1481214
add a comment |
add a comment |
Try this simple tool called Exif Thumbnail Creator. It's a software to create or reconstruct EXIF thumbnails.
1
The download links seems to be down.
– Leo
Oct 10 '17 at 15:19
add a comment |
Try this simple tool called Exif Thumbnail Creator. It's a software to create or reconstruct EXIF thumbnails.
1
The download links seems to be down.
– Leo
Oct 10 '17 at 15:19
add a comment |
Try this simple tool called Exif Thumbnail Creator. It's a software to create or reconstruct EXIF thumbnails.
Try this simple tool called Exif Thumbnail Creator. It's a software to create or reconstruct EXIF thumbnails.
edited Oct 9 '15 at 4:30
Sathyajith Bhat♦
53k29157253
53k29157253
answered Dec 29 '13 at 16:22
vvillavvilla
91
91
1
The download links seems to be down.
– Leo
Oct 10 '17 at 15:19
add a comment |
1
The download links seems to be down.
– Leo
Oct 10 '17 at 15:19
1
1
The download links seems to be down.
– Leo
Oct 10 '17 at 15:19
The download links seems to be down.
– Leo
Oct 10 '17 at 15:19
add a comment |
protected by JakeGould Oct 9 '15 at 4:37
Thank you for your interest in this question.
Because it has attracted low-quality or spam answers that had to be removed, posting an answer now requires 10 reputation on this site (the association bonus does not count).
Would you like to answer one of these unanswered questions instead?