Thumbnail generator software for Mac OS X?

4

1

I need a "good" thumbnail generator for Mac. Any suggestions?

Some criteria:

  • Must support common image formats(ie png,jpg,etc.).
  • Easy to use.
  • Support large image files.
  • Free and/or not crippled.
  • Must be able to do files and directories if needed.

The software's sole purpose should be to output thumbnails.

Thanks!

ricbax

Posted 2010-11-16T21:04:52.043

Reputation: 4 894

Question was closed 2019-08-10T20:07:27.660

I just wanted to say that this thread has a surprising breadth of different answers that are far more helpful than I thought. I knew how to do it in automator, but now I know of a commercial tool AND I've been introduced to the incredibly powerful imagemagick. This is why I love this site. – Chuck Dries – 2016-11-11T19:04:42.267

Is there a particular purpose for said thumbnail generator? – digitxp – 2010-11-16T22:47:35.850

@digitxp - I'm currently working on something where I have hundreds of large jpgs and I need to get them in a thumbnail size and in various formats. I need a non-tedious way to accomplish this. – ricbax – 2010-11-16T23:01:38.433

1How about Automator? – Daniel Beck – 2010-11-16T23:09:32.120

Answers

2

support the mac developers, buy a copy of Downsize http://stuntsoftware.com/downsize/ or you could use automator...

ps. I'm NOT affiliated to Stunt Software.

Cesar A. Rivas

Posted 2010-11-16T21:04:52.043

Reputation: 180

7

I would use ImageMagick for this. Here's a link to the OS X installation instructions. It is certainly not its sole purpose to generate thumbnails, but you can script a command for this based on numerous examples at the ImageMagick website. An example command would be:

convert -define jpeg:size=500x180  hatching_orig.jpg  -auto-orient \
      -thumbnail 250x90   -unsharp 0x.5  thumbnail.gif

Batch processing can be achieved using something like:

mogrify  -path thumbnails -thumbnail 100x100  *

These are only examples and you should check all the ImageMagick options relevant to the images that you will be processing.

fideli

Posted 2010-11-16T21:04:52.043

Reputation: 13 618

+1 Any other programs suggested may very well do the same thing by using ImageMagick to do it. – paradroid – 2010-11-17T01:23:15.340

Not quite too far up on the 'easy to use' category though. – digitxp – 2010-11-18T12:37:56.247

Personal opinion, but on the contrary, I find this easiest to use. – fideli – 2010-11-18T14:16:30.507

2

I would use automator, so you would create a workflow that looks something like this: workflow](http://i.imgur.com/SQq6mfK.png

First, you insert a get selected finder items action, so that the computer knows what files to work with.

Next, add a duplicate finder items action, because we don't want to replace the originals!

Next, we add a rename finder items action, and set it to replace text in the drop down box at the top. This is because the perevious step appends the word "copy" to the name of each file it duplicates, but I don't want them to say copy, I want them to be the file name followed by an underscore followed by the letters "sm", which stands for small, because these are the small images. So in the find field, we type a space then the word copy, so it looks like this Find: [ copy]. Then we type _sm in the replace field, so it looks like this Replace: [_sm]

Then, we add a crop images action, because that is our final goal: to crop them into thumbnails. Make sure the drop down box at the top says "to dimensions". Then, enter the dimensions of your desired thumbnails in the appropriate fields. Then, before you click run, make sure to set the scale before crop drop down box to Scale to Short Side, so it looks like this Scale before crop: [Scale to Short Side]. That way, the thumbnail will be a scaled down version of the image that fills the thumbnail box, rather than just being a tiny portion of the image.

Finally, find your images that you need thumbnails of in the finder, select all of them by either command clicking them or using the cmd+a shortcut to select them all, then press run!

There you go! You're all set with brand spankin new thumbnails.

Chuck Dries

Posted 2010-11-16T21:04:52.043

Reputation: 133

Nice idea! Sometimes it pays off to spend time with Automator. ;-) – Shawn Spencer – 2014-02-19T19:30:57.317

1

NIT Resize & Watermark works on Mac and Windows exactly the same, requires Adobe Air but it's automatically installed.

Dmitry

Posted 2010-11-16T21:04:52.043

Reputation: 11

0

ImageXY might be perfect for you - does everything that you want without the overly complex interface that most image resizers have.

Disclosure: I am the author of ImageXY.

Jacob Wyke

Posted 2010-11-16T21:04:52.043

Reputation: 101

0

Graphic converter - the swiss army knife for image handling in MacOS X could also be used. See here: http://forum.soft32.com/mac/creating-thumb-sheet-Graphic-Converter-ftopict52887.html

MostlyHarmless

Posted 2010-11-16T21:04:52.043

Reputation: 1 708