Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/happenslol/batchtool
Tool for trimming and merging png textures into a spritesheet
https://github.com/happenslol/batchtool
Last synced: 6 days ago
JSON representation
Tool for trimming and merging png textures into a spritesheet
- Host: GitHub
- URL: https://github.com/happenslol/batchtool
- Owner: happenslol
- License: mit
- Created: 2015-01-06T02:57:44.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2016-06-13T03:52:51.000Z (over 8 years ago)
- Last Synced: 2024-05-27T19:33:27.997Z (6 months ago)
- Language: C++
- Homepage:
- Size: 34.2 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# batchtool
Tool for trimming and merging png textures into a spritesheet.#### Building
To build batchtool, clone it first:
```
git clone [email protected]:n0va/batchtool.git batchtool
```The libraries are added as submodules, so doing this will download all dependencies:
```
cd batchtool
git submodule init
git submodule update
```Then, just build using cmake:
```
mkdir build
cd build
cmake ..
make
```To test out if everything is working, use the test images from res/:
```
./batchtool -vtb -o test -f json ../res/*
```
This will output test.png and test.json into the executable directory.