Metadata-Version: 2.4
Name: imagex
Version: 0.1.0
Summary: Image processing CLI tool - right in your terminal
Author: kushal1o1
License: MIT
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: rich>=13.0
Requires-Dist: questionary>=2.0
Requires-Dist: Pillow>=10.0
Provides-Extra: heif
Requires-Dist: pillow-heif>=0.16; extra == "heif"
Provides-Extra: dev
Requires-Dist: pytest>=7.0; extra == "dev"
Requires-Dist: ruff>=0.1.0; extra == "dev"
Requires-Dist: pillow-heif>=0.16; extra == "dev"
Dynamic: license-file

```
██╗███╗   ███╗ █████╗  ██████╗ ███████╗██╗  ██╗
██║████╗ ████║██╔══██╗██╔════╝ ██╔════╝╚██╗██╔╝
██║██╔████╔██║███████║██║  ███╗█████╗   ╚███╔╝
██║██║╚██╔╝██║██╔══██║██║   ██║██╔══╝   ██╔██╗
██║██║ ╚═╝ ██║██║  ██║╚██████╔╝███████╗██╔╝ ██╗
╚═╝╚═╝     ╚═╝╚═╝  ╚═╝ ╚═════╝ ╚══════╝╚═╝  ╚═╝
```

Image processing CLI tool — right in your terminal.

```bash
pip install .
imagex
```

Navigate to any folder with images and run `imagex`.

## Features

| Feature | Description |
|---|---|
| Remove Metadata | Strip EXIF/XMP/IPTC (incl. AI generation markers) |
| Convert Format | JPG ↔ PNG ↔ WEBP ↔ TIFF ↔ BMP ↔ GIF ↔ HEIC |
| Compress / Optimize | Reduce file size with quality slider |
| Resize | Percentage, exact dimensions, fit within bounds |
| Rename Batch | Pattern-based renaming (%n, %o) |
| Add Noise | Gaussian or salt & pepper (bypass AI detection) |
| Watermark | Add text/image or remove existing |

Full details in [OPERATIONS.md](OPERATIONS.md).

## Install

```bash
# From the repo directory
pip install .

# Dev mode (changes take effect immediately)
pip install -e .
```

Then run `imagex` from any folder.

## Adding Features

See [CONTRIBUTION.md](CONTRIBUTION.md) for the contribution guide.

## License

MIT
