Supporting Thumbnail Managing Standard

Questions and postings pertaining to the development of ImageMagick, feature enhancements, and ImageMagick internals. ImageMagick source code and algorithms are discussed here. Usage questions which are too arcane for the normal user list should also be posted here.
Post Reply
User avatar
magick
Site Admin
Posts: 11064
Joined: 2003-05-31T11:32:55-07:00

Post by magick »

The next point release of ImageMagick, 6.2.7-2, will attempt to support the thumbnail standard. Simply use this command, for example:
  • convert file:///home/ally/myimage.jpg -thumbnail 128x128 thumb.png
User avatar
magick
Site Admin
Posts: 11064
Joined: 2003-05-31T11:32:55-07:00

Post by magick »

We have everything you mentioned except the MD5 filename. Under Unix you can generate the MD5 like this:
  • echo -n "file:///home/jens/photos/me.png" | md5sum
So the command becomes:
  • convert file:///home/jens/photos/me.png -thumbnail 128x128 c6ee772d9e49320e97ec29a7eb5b1697.png
Post Reply