homeriscool opened this issue on Jan 03, 2009 ยท 4 posts
homeriscool posted Sat, 03 January 2009 at 12:31 PM
hello, can anyone tell me if batch rendering with poser 7 and operating system windows xp can be done? i have seen one piece of software that can do it but its only for windows millenium and lower i think. thanks everyone.
trouz69 posted Mon, 05 January 2009 at 1:40 PM
Attached Link: Glow Worm
Poserwork's "Glow Worm" can do batch rendering and it's a Python script so OS version should be irrelevant. It's available at Daz...svdl posted Wed, 07 January 2009 at 3:18 AM
Poser Pro can do it. That's what Queue Manager is for.
It should also be possible using Python. Haven't tried that yet, but the script should look like this:
import poser<br></br><br></br>
poser.OpenDocument("C:My PZ3sscene1.pz3")<br></br>
poser.Scene().Render()<br></br>
poser.Scene().SaveImage("png","C:My
Picturesscene1.png")<br></br>
poser.CloseDocument()<br></br><br></br>
poser.OpenDocument("C:My PZ3sscene2.pz3")<br></br>
poser.Scene().Render()<br></br>
poser.Scene().SaveImage("png","C:My
Picturesscene2.png")<br></br>
poser.CloseDocument()<br></br><br></br>
#etcetera,etcetera<br></br><br></br>
Of course, a real batch script would be able to process an entire folder. This is just the beginning...
The pen is mightier than the sword. But if you literally want to have some impact, use a typewriter
raven posted Fri, 09 January 2009 at 9:01 AM