Thu, Jan 9, 6:14 AM CST

Renderosity Forums / Poser - OFFICIAL



Welcome to the Poser - OFFICIAL Forum

Forum Coordinators: RedPhantom

Poser - OFFICIAL F.A.Q (Last Updated: 2025 Jan 09 3:46 am)



Subject: Export Image Location


Paul Francis ( ) posted Sun, 17 May 2009 at 10:17 AM · edited Mon, 25 November 2024 at 11:06 PM

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.

My python page
My ShareCG freebies


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

My python page
My ShareCG freebies


Privacy Notice

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.