Last active
April 25, 2016 11:35
-
-
Save hi2p-perim/0a0f2f0354b420c766629178304b0bc2 to your computer and use it in GitHub Desktop.
Convert multiple .exr files to .png with gamma correction
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
find . | grep \.exr$ | sed 'p;s/\.exr/\.png/' | xargs -n2 convert -gamma 2.2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment