Converting RAW to Jpeg in Linux

Dcraw is an amazing open source app that decodes many RAW formats to a more usable format for computer manipulation. It’s used by many commercial programs including Google’s Picassa!
It outputs pnm files, but with a little command line magic it can be used to convert a directory of RAW files to Jpeg.
Canon cameras produce RAW files with the extension “.cr2” so:

for i in *.cr2; do dcraw -c -a -n -h $i | ppmtojpeg > `basename $i cr2`jpg; echo $i done; done

This produces low quality jpeg images alongside your RAW images which makes it useful when browsing the directory with a file manager that doesn’t understand RAW.
You could have the camera produce the low quality jpeg images but why sacrifice the space on your media card?
It goes without saying that this will work on any UNIX platform that Dcraw supports!

5 thoughts on “Converting RAW to Jpeg in Linux

  1. Pingback: El Blog d'en Potti
  2. You should update this article – the args to dcraw have changed and it no longer works. Cheers though 🙂

  3. Yes it works, remove -n option or add a number after n between 100 to 1000, its some noise canceler thingy. Also note that its case sensitive. Mine cr2 files was UPPERCASE and below script worked for me. I also used -v (verbose)

    for i in *.CR2; do dcraw -c -a -v $i | ppmtojpeg > `basename $i CR2`jpg; echo $i done; done

Leave a Reply

%d bloggers like this:

By continuing to use the site, you agree to the use of cookies. more information

The cookie settings on this website are set to "allow cookies" to give you the best browsing experience possible. If you continue to use this website without changing your cookie settings or you click "Accept" below then you are consenting to this.

Close