The image packaging tool TexturePacker converts *. pvr. ccz to png format.

Source: Internet
Author: User
Tags trim

These two days to see an Android game, the resources are very good, decompression found animation in the picture format is all PVR.CCZ, check the next, this is to do the 2D Game Spirit diagram package after the format, the software is Texturepacker, know the software that knows how to solve the back.

Download Texturepacker

Install Texturepacker

Save the following code in batch processing

@echo off
Path%path%; " C:Program Files (x86) Texturepackerbin "
for/f "Usebackq tokens=*"%%d in (' dir/s/b *.pvr *.pvr.ccz *.pvr.gz ')
Do (TexturePacker.exe "%%d"--sheet "%%~dpnd.png"--data "%%~dpnd.plist"
--opt RGBA8888--allow-free-size--algorithm Basic--no-trim--dither-fs)
Pause

Put the batch above in your folder directory and run it (support traversing subdirectories)

Packaging pictures into Pvr.czz, also requires a batch

@echo off
Path%path%; " C:Program Files (x86) Codeandwebtexturepackerbin "
for/f "Usebackq tokens=*"%%d in (' dir/s/b *.png ') Do (
TexturePacker.exe "%%d"--sheet "%%~DPND.PVR"--data "%%~dpnd.plist"
--opt PVRTC4--allow-free-size--algorithm Basic--no-trim--dither-fs
)
Pause

Using this tool, we can download the game resource picture is much more convenient, although this tool is the commercial charge, but also has the free edition.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.