[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Sheflug] Batch Process Images - Debian



> I want to batch process about 100 photographs.  I think I can do that
> with Gimp but command line might also work ?  I want to reduce
> pictures that are 3Mb in size down to about 300k or thereabouts so
> that I can upload them to the internet for a slide show. My
> workstation is Debian Etch stable.
I use imagemagick. The command is something like

mogrify -resize 600 *

This will convert the existing images (mogrify) by resizing them to 600px
wide. To specify reducing to a particular height it's something like

mogrify -resize x400 *

To resize them to a particular shape it's something like

mogrify -resize 600x400 *

There's all sorts of other options with imagemagick (for instance to set
resolutions)

http://www.imagemagick.org/script/index.php

Hope this helps

David

> Anyone any ideas ?
>
>
> --
> Richard
>
> _______________________________________________
>         Sheffield Linux User's Group
>   http://www.sheflug.org.uk/mailfaq.html
>  GNU - The choice of a complete generation
>



_______________________________________________
        Sheffield Linux User's Group
  http://www.sheflug.org.uk/mailfaq.html
 GNU - The choice of a complete generation