How to generate an EXIF thumbnail for a JPEG?












3















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.










share|improve this question





























    3















    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.










    share|improve this question



























      3












      3








      3








      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.










      share|improve this question
















      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






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Oct 9 '15 at 4:33









      JakeGould

      32k1098140




      32k1098140










      asked Dec 9 '10 at 10:02









      PramPram

      273139




      273139






















          4 Answers
          4






          active

          oldest

          votes


















          3














          You can use the -g option of exiftran:



          exiftran -g -i image.jpg


          The -i option does in-place modification to the file.






          share|improve this answer































            2














            You can use nconvert:



            nconvert -overwrite -buildexifthumb foo.jpg





            share|improve this answer
























            • I did this, but verexif.com still seems to give There is no thumbnail.

              – Leo
              Oct 10 '17 at 15:17





















            1














            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.






            share|improve this answer































              0














              Try this simple tool called Exif Thumbnail Creator. It's a software to create or reconstruct EXIF thumbnails.






              share|improve this answer





















              • 1





                The download links seems to be down.

                – Leo
                Oct 10 '17 at 15:19












              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









              3














              You can use the -g option of exiftran:



              exiftran -g -i image.jpg


              The -i option does in-place modification to the file.






              share|improve this answer




























                3














                You can use the -g option of exiftran:



                exiftran -g -i image.jpg


                The -i option does in-place modification to the file.






                share|improve this answer


























                  3












                  3








                  3







                  You can use the -g option of exiftran:



                  exiftran -g -i image.jpg


                  The -i option does in-place modification to the file.






                  share|improve this answer













                  You can use the -g option of exiftran:



                  exiftran -g -i image.jpg


                  The -i option does in-place modification to the file.







                  share|improve this answer












                  share|improve this answer



                  share|improve this answer










                  answered Apr 25 '16 at 7:19









                  SampoSampo

                  32928




                  32928

























                      2














                      You can use nconvert:



                      nconvert -overwrite -buildexifthumb foo.jpg





                      share|improve this answer
























                      • I did this, but verexif.com still seems to give There is no thumbnail.

                        – Leo
                        Oct 10 '17 at 15:17


















                      2














                      You can use nconvert:



                      nconvert -overwrite -buildexifthumb foo.jpg





                      share|improve this answer
























                      • I did this, but verexif.com still seems to give There is no thumbnail.

                        – Leo
                        Oct 10 '17 at 15:17
















                      2












                      2








                      2







                      You can use nconvert:



                      nconvert -overwrite -buildexifthumb foo.jpg





                      share|improve this answer













                      You can use nconvert:



                      nconvert -overwrite -buildexifthumb foo.jpg






                      share|improve this answer












                      share|improve this answer



                      share|improve this answer










                      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





















                      • 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













                      1














                      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.






                      share|improve this answer




























                        1














                        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.






                        share|improve this answer


























                          1












                          1








                          1







                          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.






                          share|improve this answer













                          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.







                          share|improve this answer












                          share|improve this answer



                          share|improve this answer










                          answered Feb 3 at 16:12









                          IvanHIvanH

                          1481214




                          1481214























                              0














                              Try this simple tool called Exif Thumbnail Creator. It's a software to create or reconstruct EXIF thumbnails.






                              share|improve this answer





















                              • 1





                                The download links seems to be down.

                                – Leo
                                Oct 10 '17 at 15:19


















                              0














                              Try this simple tool called Exif Thumbnail Creator. It's a software to create or reconstruct EXIF thumbnails.






                              share|improve this answer





















                              • 1





                                The download links seems to be down.

                                – Leo
                                Oct 10 '17 at 15:19
















                              0












                              0








                              0







                              Try this simple tool called Exif Thumbnail Creator. It's a software to create or reconstruct EXIF thumbnails.






                              share|improve this answer















                              Try this simple tool called Exif Thumbnail Creator. It's a software to create or reconstruct EXIF thumbnails.







                              share|improve this answer














                              share|improve this answer



                              share|improve this answer








                              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
















                              • 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







                              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?



                              Popular posts from this blog

                              How to make a Squid Proxy server?

                              第一次世界大戦

                              Touch on Surface Book