Paul Francis opened this issue on May 17, 2009 · 7 posts
Paul Francis posted Sun, 17 May 2009 at 10:17 AM
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-----!"
cspear posted Sun, 17 May 2009 at 10:26 AM
Not as such. Why not put a shortcut to your preferred location in Poser's default location? Then it's a just a click away.
Windows 10 x64 Pro - Intel Xeon E5450 @ 3.00GHz (x2)
PoserPro 11 - Units: Metres
Adobe CC 2017
ockham posted Sun, 17 May 2009 at 10:28 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.
Paul Francis posted Sun, 17 May 2009 at 10:29 AM
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-----!"
Sa_raneth posted Sun, 17 May 2009 at 10:42 AM
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
markschum posted Sun, 17 May 2009 at 11:00 AM
yup, what sa_raneth said. Never did it the other way .
ockham posted Sun, 17 May 2009 at 11:36 AM
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