Skip to content

A Python CLI tool for extracting sprites from spritesheets

License

Notifications You must be signed in to change notification settings

rysuds/exsprite

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

28 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Exsprite Logo

A CLI tool for extracting sprites from spritesheets!

Setup

This will install all required packages and create the cli command for use

python setup.py install

Example 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 sprite will be generated in the same dir as your spritesheet. If you'd like to control the name/location of the output folder path you can do

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