Forum Coordinators: RedPhantom
Poser - OFFICIAL F.A.Q (Last Updated: 2024 Nov 18 10:25 pm)
hadn't tested this myself but according to Kuroyume0161 it's just zip:
http://www.renderosity.com/mod/forumpro/showthread.php?message_id=2429106&ebot_calc_page#message_2429106
I'm on a Mac. =D
I tried gzipping the file and renaming to .crz, seems to open ok, but I got a few errors about missing bones on this product: http://www.daz3d.com/i.x/shop/itemdetails/-/?item=6647&cat=421&_m=d
are you trying to UNzip, or to zip it up? If you need the plaintext/uncompressed version I'm sure you can re-download that from DAZ.
If you're getting errors about missing bones, that probably means the rig of the conforming armor item is trashed. Good luck getting that going, you may have better luck asking in the DAZ|Studio forum here or at DAZ (assuming you're using that).
Quote - Poser comes with scripts to compress/uncompress files.
Using the supplied script should prove to be much easier than other utilities for compressing files.
No Poser. I switched to Mac and the "sidegrade" fee is $130. It's not worth it for something that I've heard doesn't work very well in Leopard. Maybe when Poser 8 comes out.
I can write a shell script to gzip and rename files.
Yep - gzip and gunzip are nestled in OSX. You can do it yourself, or be lazy and use this (name it "pack", or whatever you like):
#!/bin/sh<br></br><br></br>
# cheesy little script. do whatever you like with it.<br></br><br></br>
# usage: pack <file> [newname]<br></br><br></br>
if [ "$2" != "" ];<br></br>
then<br></br>
gzip -c $1 > $2.gz<br></br>
else<br></br>
gzip $1<br></br>
fi<br></br><br></br>
exit
Took all of 30 second to whomp it out, so test it first. :)
/P
Quote - Yep - gzip and gunzip are nestled in OSX. You can do it yourself, or be lazy and use this (name it "pack", or whatever you like):
#!/bin/sh<br></br><br></br> # cheesy little script. do whatever you like with it.<br></br><br></br> # usage: pack <file> [newname]<br></br><br></br> if [ "$2" != "" ];<br></br> then<br></br> gzip -c $1 > $2.gz<br></br> else<br></br> gzip $1<br></br> fi<br></br><br></br> exit
Took all of 30 second to whomp it out, so test it first. :)
/P
Hmm thanks :)
My Unofficial CR2 File Structure says:
Compressed files use zlib compression.
Of course, gzip is based on zlib compression but most file compression/decompression software these days supports this compression (WinZip, StuffIt, etc.). WinZip and StuffIt do the decompression but use their own compression algorithms in that direction. Penguinisto's script should get you going. :)
C makes it easy to shoot yourself in the
foot. C++ makes it harder, but when you do, you blow your whole leg
off.
-- Bjarne
Stroustrup
Contact Me | Kuroyume's DevelopmentZone
Quote - try zipeg on a Mac, uncompresses just about everything and its donation ware
http://www.zipeg.com/
Stuffit expander is free... and OSX will unzip just about anything. You might need to go to the command line.
I like how people are trying to take advantage of not so knowledgeable users and sell them things they already have. Stuffit doesn't do much for you that you can't do on the command line.
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.
What is the compression format that Poser uses to compress the runtime files? I don't have Poser anymore, so I can't use the script to do it. I think it is gzip, but I'm not 100% sure.