The current approach to render out slates uses selenium to basically build a html site that gets screenshotted as png in the desired output dimensions.
In my tests this was not as performant and would also limit us to only png afaik. i'm cautiously pessimistic about selenium being able to output exr.
The current approach to render out slates uses
selenium
to basically build a html site that gets screenshotted aspng
in the desired output dimensions. In my tests this was not as performant and would also limit us to onlypng
afaik. i'm cautiously pessimistic about selenium being able to outputexr
.Should we rather pivot to use
PIL
for building slates? I did some initial tests and i believe this could be implemented fairly quickly. However outputtingexr
could also prove to be a bit trickier looking at this (although already 3 years old) --> https://stackoverflow.com/questions/65605761/write-pil-image-to-exr-using-openexr-in-python@jakubjezek001 maybe you could share what your approach in AYON was?