Greenguy's Board


Go Back   Greenguy's Board > Newbie Questions
Register FAQ Calendar Today's Posts

 
 
Thread Tools Search this Thread Rate Thread Display Modes
Prev Previous Post   Next Post Next
Old 2008-10-27, 05:31 AM   #8
MadCat
If something's hard to do, then it's not worth doing
 
MadCat's Avatar
 
Join Date: Sep 2008
Location: Berlin, Germany
Posts: 247
Quote:
Originally Posted by dicedealer View Post
Does anybody know of some good batch image processing software that is similar to Thumbs Plus which is written for Linux?
Go forth and apt-get install imagemagick. Then when you want to make thumbs out of a folder of jpegs:

Code:
cd folder-full-of-jpegs
mkdir thumbs
for a in *.jpg; do (cp $a thumbs/$a; mogrify -geometry 150x thumbs/$a); done
That'll stick thumbs in a subdirectory called thumbs and makes them 150 pixels wide. If you want wider thumbs (i.e. 200 wide, use 200x instead). If you need thumbs restricted by height, use "-geometry x200" to make thumbs that are 200 pixels high. Doing it this way preserves the thumb aspect ratio.

If you need to crop thumbs to make them all square (or all the same size), you're stuck with Gimp
MadCat is offline   Reply With Quote
 


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 04:22 AM.


Mark Read
Powered by vBulletin® Version 3.8.1
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
© Greenguy Marketing Inc