Page 1 of 1

Update the internal thumbnail of a jpg file ?

Posted: 2012-01-09T01:58:17-07:00
by spok
I have a jpeg file which I access and modify through a PixelPacket * pointer.
When I save the file after modification, the thumbnail contained inside the file is not updated.
Is there any method which allows to update the internal thumbnail of a jpg file ?

The same program with a tif file, works great and update the thumbnail contained inside the tif file automatically...

Re: Update the internal thumbnail of a jpg file ?

Posted: 2012-01-09T05:11:31-07:00
by magick
The thumbnail is part of the EXIF profile. ImageMagick only updates the resolution of the EXIF profile. For the thumbnail you'll need another utility.

Re: Update the internal thumbnail of a jpg file ?

Posted: 2012-01-09T06:21:54-07:00
by spok
magick wrote:The thumbnail is part of the EXIF profile. ImageMagick only updates the resolution of the EXIF profile. For the thumbnail you'll need another utility.
Thanks for the answer. Do you know any library I can use for this ?