Hey @hSchoenberger,
as I said, what we provided there is mostly a workaround, we'll have to streamline things there. I cannot talk much about the details here, since I do not yet know myself how we will solve this.
Please open new topics for new questions in the future, especially bug reports should remain clean.
Our render pipeline, and that includes commissioning third party renders, converges into a singular point. There are currently four entry points into that pipeline:
- The built-in commands such as "Render to Picture Viewer", "Render View", "Render Region", etc. For them this pipeline has been built initially. This is basically the gold standard to measure against. Also headless Cinema 4D instances such as the command line or c4dpy use this mechanism when invoked for a rendering.
- The c4d.document.BatchRender it works as (1) but the drawback compared to
RenderDocument
is that you must always operate on files on disk. I.e., you cannot just change a document im memory and then render it, you must first save it to disk, and also your output will provided on disk and not as bitmaps in memory. As stated before, this is the way I recommend. You will not have to apply any OCIO hacks here. - The .net Renderer, a.k.a, Team Render, basically the same as (2), just more complicated. And other than for (2), not all third party renderers do support Team Render.
RenderDocument
differs from these three in that it does not take the full length of our render pipeline, but just a subsection of it.RenderDocument
is used internally to render icons and preview images and was never intended to be the 'programmatic rendering interface' it has unfortunately has been in the past marketed as and is used as by many third parties. The advantage ofRenderDocument
is that you can easily operate in memory only without any disk activity.
Whoever asked me in the past, I always told them that using RenderDocument
as a render pipeline endpoint is not such a good idea because that is not what it is designed for. Not because I was prophetic about the OCIO issues, but because there are also other short-comings due to it not taking the full route in the render pipeline.
With OCIO this worsened, as we have intertwined the render pipeline, the Picture Viewer, and saving output to disk even more, i.e., things RenderDocument
is naturally left out of. Internally we can 'just' write code to fix this when we use RenderDocument
, but for third parties not all of these tools are even available in C++ (and even more are missing in Python), and generally Python devs also have a lower pain tolerance when it comes to writing boiler plate code.
I simply do not know yet how I will fix this, as this is largely not my code. But for me is clear that this must be simplified in Python. This could either happen in the form of fixing RenderDocument
regrading its Picture Viewer and BaseBitmap.Save
, i.e., BitmapSaver
interactions, or by giving the BatchRender
more RenderDocument
like qualities.
The solution to this will not be super simple, and it will likely not arrive within 2025. For now there is a somewhat functional workaround for RenderDocument
and you can always use the BatchRender
.
Cheers,
Ferdinand