From 5e84cde21e6116a72b00c3fcd32dcbc36dfa251b Mon Sep 17 00:00:00 2001 From: mr0xb Date: Tue, 9 Dec 2025 00:20:24 -0500 Subject: [PATCH] initial commit --- README.md | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..5a7dfb0 --- /dev/null +++ b/README.md @@ -0,0 +1,26 @@ +# spritestitch + +`spritestitch` is a tiny Go CLI tool that stitches multiple image files into a single spritesheet, either horizontally or vertically. It supports PNG, JPEG, and GIF inputs and always outputs a PNG. + +## Features + +- Join multiple images into one spritesheet +- Horizontal or vertical layout +- Supports PNG/JPEG/GIF as input +- Outputs a single PNG file +- Simple command-line interface + +## Installation + +Make sure you have [Go](https://go.dev/) installed (1.20+ recommended). + +```bash +git clone https://github.com/mr0xb/spritestitch.git +cd spritestitch +go build -o spritestitch . +``` + +## Usage +``` bash +spritestitch -o output.png -direction [h|v] sheet1.png sheet2.png ... +```