Hi,
On 9/26/07, John R Puhalski <[EMAIL PROTECTED]> wrote:
> at the software freedom day I asked about resizing pictures for sending
> them in emails. As a reminder I've used Nikon software that I could
> select any number of pictures, right click and select 'email' and it
> would give me the option of resizing the picture for sending. I've been
> having a hard time finding how to do that with linux. You mentioned
> that you had a way of doing that.
Install the fantabulous ImageMagick package using your distribution of
choice's method. This should install the 'convert' program. Hopefully
you have a bash shell handy, you could simply do this, or a small
modification thereof:
for p in *.jpg; do echo "converting $p"; convert -resize 30% "$p"
"${p/.jpg/_s.jpg}; done
'convert' takes about ten thousand options, consult the manual. :-)
VoilĂ .
-jesse
_______________________________________________
Mhvlug mailing list
[email protected]
http://mhvlug.org/cgi-bin/mailman/listinfo/mhvlug