mirror of
https://codeberg.org/vlw/pysheeter.git
synced 2025-09-14 03:33:40 +02:00
Create scaled, vertical and horizontal sprite sheets from PNG images.
|
||
---|---|---|
dist | ||
example | ||
pysheeter | ||
pysheeter_VicW.egg-info | ||
.gitignore | ||
__init__.py | ||
example.py | ||
LICENSE | ||
README.md | ||
setup.py |
PySheeter
Lightweight Pillow Python-script to create and scale sprite sheets from PNGs in folders or individually
Get started / Basic usage
- Download and install Python 3 for your architecture
- Download and install Pillow for Python 3 with
pip3
$ pip3 install Pillow
Sprite sheet from folder
- Import
Sheet
frompysheeter
from pysheeter import Sheet
- Initialize the class with a path to your PNG-folder
spritesheet = pysheeter.Sheet("example/")
- Create a sprite sheet with
put()
spritesheet.put("example_v1616.png",(16,16))
# Creates a vertical spritesheet named 'example_v1616.png' with the dimensions 16x16px (scaled automatically)
Example usage:
# from 'example.py'
from pysheeter import PySheeter
# Load sprites from 'example/'
spritesheet = PySheeter.Sheet("example")
# Create a vertical spritesheet with the dimensions 16x16
spritesheet.put("example_v1616.png",(16,16))
# Create a horizontal spritesheet with the dimensions 16x32
spritesheet.put("example_h1632.png",(16,32),False)
Sprite sheet from individual PNG-images
- Import
Sheet
frompysheeter
from pysheeter import Sheet
- Initialize the class without any arguments
spritesheet = pysheeter.Sheet()
- Add PNG-images with
add()
spritesheet.add("example/1.png")
spritesheet.add("example/2.png")
spritesheet.add("example/3.png")
...
- Remove PNG-images with
remove()
spritesheet.remove("example/2.png")
- Create a sprite sheet with
put()
spritesheet.put("example_v1616.png",(16,16))
# Creates a vertical spritesheet named 'example_v1616.png' with the dimensions 16x16px (scaled automatically)
Example usage:
from pysheeter import PySheeter
# Load sprites from 'example/'
spritesheet = PySheeter.Sheet()
# Add PNG-images
spritesheet.add("example/1.png")
spritesheet.add("example/2.png")
spritesheet.add("example/3.png")
spritesheet.add("example/7.png")
spritesheet.add("example/5.png")
spritesheet.add("example/9.png")
# Create a vertical spritesheet with the dimensions 16x16
spritesheet.put("example_v1616.png",(16,16))
# Create a horizontal spritesheet with the dimensions 16x32
spritesheet.put("example_h1632.png",(16,32),False)