-
Hi, i am just wondering if there is an optional way to render and write the screenshots in a format like 32bit .exr file. Any information on that? |
Beta Was this translation helpful? Give feedback.
Answered by
Tom94
Mar 2, 2022
Replies: 1 comment 5 replies
-
You can use the python bindings for this. common.write_image("screenshot.exr", testbed.render(1920, 1080, spp=1, linear=True)) |
Beta Was this translation helpful? Give feedback.
5 replies
Answer selected by
NEONFIVE
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You can use the python bindings for this.
testbed.render
return a numpy array in linear colors, so you can write an exr file as easily as: