How to convert pvr.czz file to PNG ?

Download TexturePacker

Install and it does support command line tools.

To convert single pvr.czz file to PNG in console, here is the way.
[code lang=”bash”]
TexturePacker filename.pvr.ccz –sheet filename.png –data dummy.plist –algorithm Basic –allow-free-size –no-trim
[/code]

To convert mass pvr.czz file to PNG in console, here is the way.
[code lang=”bash”]
find -name \*.pvr.czz | sed ‘s/\.pvr.czz//g’ | \
xargs -I % -n 1 TexturePacker %.pvr.czz \
–sheet %.png \
–data dummy.plist \
–algorithm Basic \
–allow-free-size \
–no-trim
[/code]

Tags:

1 thought on “How to convert pvr.czz file to PNG ?”

Leave a Comment

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.