Skip to content

Latest commit

 

History

History
39 lines (33 loc) · 895 Bytes

README.md

File metadata and controls

39 lines (33 loc) · 895 Bytes

Exsprite Logo

A CLI tool for extracting sprites from spritesheets!

Setup

Dependencies

- numpy
- scikit-image
- scipy
- fire
- matplotlib
- tqdm

Installation

The following will install all dependencies and create the CLI command

python setup.py install

Usage

Grouping by rows

Row Example

exsprite save --filepath <path_to_sprite_sheet>

Grouping by columns

Column Example

exsprite save --filepath <path_to_sprite_sheet> --group col

Custom output folder

By default an output folder with your grouped sprites will be generated in the same directory as your spritesheet. If you'd like to set the name/location of the output folder path you can do

exsprite save --filepath <path_to_sprite_sheet> --folderpath <path_to_output_folder>