Skip to content

Instantly share code, notes, and snippets.

@juwit
Created August 5, 2018 14:48
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save juwit/70461ec358cf927ad837d08aa32b832f to your computer and use it in GitHub Desktop.
Save juwit/70461ec358cf927ad837d08aa32b832f to your computer and use it in GitHub Desktop.
convert canon RAW (.CR2) to JPG
sudo apt-get install dcraw
# convert CR2 to PPM
for i in *.CR2; do dcraw $i; done
# convert PPM to JPG
for i in *.ppm; do convert $i $(basename $i .ppm).jpg; done
# remove intermediate PPM files
rm *ppm
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment