-
Today I installed vcpkg and then OIIO. I'm looking for a way to quickly convert EXR files to PNG (or JPG maybe). Let me explain: I work in VFX (continuously dealing with exr files) and I'm using Seer in windows, which is like Mac OS QuickLook: you hit space bar over a file and it shows a preview of the file. So I'm looking for an alternative way to properly convert the EXR files so I can fast and accurately preview them by hitting the space bar. Is there any way to accomplish this task from cmd using oiio ? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
Just straightforwardly moving the data in the exr file to png or jpeg would look like
But you mentioned something about ACES, so I'm thinking that the exr file is known to be in ACES and of course you probably want the PNG or JPEG to properly be in sRGB, right? So here is where things get complicated. If you have OpenColorIO support built in, and an OCIO config that defines ACEScg and sRGB color spaces, then you can also do the color space transformation like this:
|
Beta Was this translation helpful? Give feedback.
Just straightforwardly moving the data in the exr file to png or jpeg would look like
But you mentioned something about ACES, so I'm thinking that the exr file is known to be in ACES and of course you probably want the PNG or JPEG to properly be in sRGB, right? So here is where things get complicated. If you have OpenColorIO support built in, and an OCIO config that defines ACEScg and sRGB color spaces, then you can also do the color space transformation like this: