Metadata-Version: 2.4
Name: cutstitch
Version: 0.2.0
Summary: A tool to stitch images together using various cutout modes.
Author-email: rotgruengelb <daniel+cutstitch@rotgruengelb.net>
License: MIT
Project-URL: Homepage, https://github.com/rotgruengelb/cutstitch
Project-URL: Documentation, https://github.com/rotgruengelb/cutstitch#readme
Project-URL: Source, https://github.com/rotgruengelb/cutstitch
Project-URL: Tracker, https://github.com/rotgruengelb/cutstitch/issues
Keywords: image,stitch,cutout,cli,tool
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: End Users/Desktop
Classifier: Topic :: Artistic Software
Classifier: Topic :: Multimedia :: Graphics
Classifier: Topic :: Multimedia :: Graphics :: Graphics Conversion
Classifier: Topic :: Utilities
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Console
Requires-Python: >=3.12
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: pillow>=11.3.0
Dynamic: license-file

# cutstitch

A tool to stitch images together using various cutout modes.

## Usage

### CLI

```
usage: cutstitch [-h] [--mode {vertical,horizontal,diagonal,circle}] [--angle ANGLE] [--output OUTPUT] files [files ...]

positional arguments:
  files                 Image files to stitch together (two or more, in order)

options:
  -h, --help            show this help message and exit
  --mode {vertical,horizontal,diagonal,circle}
                        Cutout mode (default: vertical)
  --angle ANGLE         Angle for diagonal mode
  --output OUTPUT       Output file name
```

#### Examples
```sh
cutstitch image1.png image2.png --mode vertical --output result.png
```

## Features
- Stitch multiple images together
- Multiple  cutout modes
- Simple CLI
