Created
August 5, 2018 14:48
-
-
Save juwit/70461ec358cf927ad837d08aa32b832f to your computer and use it in GitHub Desktop.
convert canon RAW (.CR2) to JPG
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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