Skip to content

rysuds/exsprite

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

37 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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>