View previous topic :: View next topic |
Author |
Message |
greenfury n00b
Joined: 19 Sep 2002 Posts: 8
|
Posted: Wed Oct 16, 2002 8:40 pm Post subject: photo/image resize app? |
|
|
Is there an app or utility (graphical or command line) that can resize jpg images and save them at their new size? I have a bunch of 1600x1200 images from my digital camera that I want saved as 320x240 for posting on a web site.
I tried xli, iv. Didn't look like xzgv or gcqiew would do it. ee wouldn't emege.
Gimp might do it, but I want a minimal solution and gimp has some dozen or so dependencies I don't have installed.
Any ideas? |
|
Back to top |
|
|
P-Nuts n00b
Joined: 15 Oct 2002 Posts: 31
|
Posted: Wed Oct 16, 2002 8:47 pm Post subject: |
|
|
Sounds like a job for ImageMagick. |
|
Back to top |
|
|
nmr_spectrometer n00b
Joined: 07 Oct 2002 Posts: 55
|
Posted: Wed Oct 16, 2002 9:53 pm Post subject: |
|
|
Yep "emerge -p imagemagick" to see what dependencies will be filled (quite a few actually), and then "emerge imagemagick" for real when you think you're ready.
Then you'll have a program called "convert" available to you, and you can do:
Code: | convert -scale 320x240 bigimage.jpg littleimage.jpg |
or even:
Code: | for F in *.jpg; do convert -scale 320x240 $F small_$F; done |
Good luck! |
|
Back to top |
|
|
greenfury n00b
Joined: 19 Sep 2002 Posts: 8
|
Posted: Fri Oct 18, 2002 12:36 am Post subject: Thanks! |
|
|
Just what I was looking for! _________________ Mopar or No Car! |
|
Back to top |
|
|
|