Forum Coordinators: RedPhantom
Poser - OFFICIAL F.A.Q (Last Updated: 2025 Jan 09 3:46 am)
Nope, we're stuck with saving to runtime/textures. Earlier versions
remembered your choice of output location, but P7 introduced this
wonderful "feature" of always saving to runtime/textures.
My python page
My ShareCG freebies
Grrrrrrr....thanks guys.
My
self-build system - Vista 64 on a Kingston 240GB SSD,
Asus P5Q
Pro MB, Quad
6600 CPU, 8 Gb Geil Black Dragon Ram, CoolerMaster HAF932 full
tower chassis, EVGA Geforce GTX 750Ti Superclocked 2 Gb,
Coolermaster V8 CPU aircooler, Enermax 600W Modular PSU, 240Gb SSD,
2Tb HDD storage, 28" LCD monitor, and more red LEDs than a grown
man really
needs.....I built it in 2008 and can't afford a new one,
yet.....!
My
Software - Poser Pro 2012, Photoshop, Bryce 6 and
Borderlands......"Catch a
r--i---d-----e-----!"
well i save my rendered images to a different location with poser 7
go to file export image it will then open a dialouge box that wants to save in textures click on arrow where it says textures and choose location you want to save PNG file in
i do this with every render cause poser dont remember where to save it but it works
If you have a standard location, this little script will render and save to your preferred
location in one click. It gives each file a name like Render_02, automatically
incrementing so it won't overwrite.
Note that the StandardPath must be filled in the script itself (fourth line), and it must
be written in the usual "programmer's style" with double backslashes.
To save TIF or PNG, just substitute "tif" or "png" for "bmp" in the next-to-last line.
import poser
import os
scene = poser.Scene()
StandardPath="c:downloads"
if not os.path.exists(StandardPath): os.mkdir(StandardPath)
for N in range(0,100): # 100 should be enough
TryName = os.path.join(StandardPath, ("Render_%.2d.bmp" % N))
if not os.path.isfile(TryName): # Doesn't exist. Save and stop.
scene.Render() # Delete this line if you want a save-only script
scene.SaveImage("bmp",TryName)
break
My python page
My ShareCG freebies
This site uses cookies to deliver the best experience. Our own cookies make user accounts and other features possible. Third-party cookies are used to display relevant ads and to analyze how Renderosity is used. By using our site, you acknowledge that you have read and understood our Terms of Service, including our Cookie Policy and our Privacy Policy.
I've had enough. Can someone please, please tell me if Poser can be forced to export the rendered image to a directory the user chooses, rather than reverting to the default Poser one each time the programme is run?
My self-build system - Vista 64 on a Kingston 240GB SSD, Asus P5Q Pro MB, Quad 6600 CPU, 8 Gb Geil Black Dragon Ram, CoolerMaster HAF932 full tower chassis, EVGA Geforce GTX 750Ti Superclocked 2 Gb, Coolermaster V8 CPU aircooler, Enermax 600W Modular PSU, 240Gb SSD, 2Tb HDD storage, 28" LCD monitor, and more red LEDs than a grown man really needs.....I built it in 2008 and can't afford a new one, yet.....!
My Software - Poser Pro 2012, Photoshop, Bryce 6 and Borderlands......"Catch a r--i---d-----e-----!"