8000 GitHub - HearthSim/decrunch: Python wrapper around Crunch DXTc decompressor
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

HearthSim/decrunch

Repository files navigation

decrunch

Build Status

decrunch is a Python wrapper around crunch's decompressor.

Setup

  • To install directly from PyPI: pip install decrunch
  • To install from source: pip install Cython, then ./setup.py install

Usage

import decrunch

with open("example.crn", "rb") as f:
	buf = f.read()

fi = decrunch.File(buf)
tex_info = fi.info()

for level in range(tex_info["levels"]):
	print("Level info %i: %r" % (level, fi.info(level)))

with open("out.bc1", "wb") as f:
	f.write(fi.decode_level(0))

Further image decoding requires a DXTn decompressor, such as the one that can be found in Pillow as bcn.

License

The full license text is available in the LICENSE file. See crunch/license.txt for the license of files in the crunch/ subdirectory.

The files in crunch/ are an unaltered subset of the original code; the entirety of crunch may be obtained at https://github.com/BinomialLLC/crunch.

About

Python wrapper around Crunch DXTc decompressor

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Contributors 3

  •  
  •  
    3A98
  •  
0