ImageHeat is a program for viewing encoded textures. It's free and open source.
ImageHeat supports all popular image formats like RGBA8888, RGB888, ASTC, RGB565, DXT1 etc. All formats supported by ReverseBox should be supported by ImageHeat as well.
There is also support for:
- texture unswizzling for platforms like PSP, PS2, PS3, PS4, XBOX etc.
- decoding indexed image formats like PAL4, PAL8 and PAL16
- decompressing data using algorithms like RLE, PackBits, ZLIB etc.
- PS2 palette unswizzling
- post-processing options like zoom, vertical flip, horizontal flip and rotate
- saving output image data as DDS, PNG or BMP files
You can always download newest nightly build here.
- Download and install Python 3.11.6. Remember to add Python to PATH during installation
- Download project's source code and save it in "ImageHeat-master" directory
- Go to the directory containing source code
cd ImageHeat-master
- Create virtualenv and activate it
python -m venv my_env.\my_env\Scripts\activate.bat
- Install all libraries from requirements.txt file
pip install -r requirements.txt
- Run the src\main.py file
python -m src.main
- Install Python 3.11 and all needed libraries
sudo apt-get updatesudo apt-get install python3.11sudo apt-get install python3-pipsudo apt-get install python3.11-venvsudo apt-get install python3-tk
- Download project's source code and save it in "ImageHeat-master" directory
- Go to the directory containing source code
cd ImageHeat-master
- Create virtualenv and activate it
python3.11 -m venv my_envchmod 700 ./my_env/bin/activatesource my_env/bin/activate
- Install all libraries from requirements.txt file
python3.11 -m pip install -r requirements.txt
- Run the src\main.py file
python3.11 -m src.main
- Download Python 3.11.0 for macOS
curl -O https://www.python.org/ftp/python/3.11.0/python-3.11.0-macos11.pkg
- Install Python 3.11.0 by double-clicking on PKG file and by following on-screen instructions
- Check installation
python3.11 --version
- Go to the directory containing source code
cd ImageHeat-master
- Create virtualenv and activate it
python3.11 -m venv my_envsource my_env/bin/activate
- Install libraries
pip install -r requirements.txt
- Run the src\main.py file
python3.11 -m src.main