Created
March 30, 2013 19:34
-
-
Save cyx/5278050 to your computer and use it in GitHub Desktop.
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
Dir["*.NEF"].each do |file| | |
# Since you don't really get to display the raw quality, | |
# we save ourselves bandwidth and reduce to something reasonable, | |
# in this case 2520x2160. | |
puts `gm convert -resize '2520X2160>' #{file} #{file.gsub(".NEF", ".JPG")}` | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment