Converting multiple JPG files to PNG

Submitted by hpn on January 24, 2007 - 10:15
Notes

Add new comment

The content of this field is kept private and will not be shown publicly.

Filtered HTML

  • Allowed HTML tags: <a href hreflang> <em> <strong> <cite> <blockquote cite> <code> <ul type> <ol start type='1 A I'> <li> <dl> <dt> <dd> <h2 id='jump-*'> <h3 id> <h4 id> <h5 id> <h6 id>
  • Lines and paragraphs break automatically.
CAPTCHA
This question is for testing whether or not you are a human visitor and to prevent automated spam submissions.
(Quite handy - and you can even go ahead to shrink the two commands to one). for A in *.jpg; do convert $A $A.png; done rename -v 's/\.jpg.png$/.png/' *.jpg.png This, on GNU/Linux, with [:http://www.imagemagick.org/|imagemagick].