Comments on: Quickly convert images with ImageMagick http://amazing-development.com/archives/2011/03/20/convert-images-with-imagemagick/ ruby, java and the rest Wed, 17 Jul 2013 11:30:54 +0000 hourly 1 http://wordpress.org/?v=3.4.2 By: Frank Spychalski http://amazing-development.com/archives/2011/03/20/convert-images-with-imagemagick/comment-page-1/#comment-149084 Frank Spychalski Sun, 20 Mar 2011 15:23:26 +0000 http://amazing-development.com/?p=479#comment-149084 Thanks I have to try this. Additionally <a href="http://www.facebook.com/forster.michael" rel="nofollow">Mike</a> suggested on FB: <code>for file in *.png; do convert "$file" "${file%.png}.jpg"; done</code> Thanks I have to try this.

Additionally Mike suggested on FB:

for file in *.png; do convert "$file" "${file%.png}.jpg"; done

]]>
By: Hans verschooten http://amazing-development.com/archives/2011/03/20/convert-images-with-imagemagick/comment-page-1/#comment-149082 Hans verschooten Sun, 20 Mar 2011 15:14:49 +0000 http://amazing-development.com/?p=479#comment-149082 Instead of ImageMagick you could you use sips (scriptable image processing system). This is installed by default on Mac OS. for ex. sips -s format jpeg "$file" --out "$jpg" Instead of ImageMagick you could you use sips (scriptable image processing system). This is installed by default on Mac OS.
for ex. sips -s format jpeg “$file” –out “$jpg”

]]>
By: schlumpf http://amazing-development.com/archives/2011/03/20/convert-images-with-imagemagick/comment-page-1/#comment-149075 schlumpf Sun, 20 Mar 2011 14:09:03 +0000 http://amazing-development.com/?p=479#comment-149075 wow! Mac users can still use the command line! I'm impressed ;-) wow! Mac users can still use the command line! I’m impressed ;-)

]]>