Metadata-Version: 2.4
Name: imagex
Version: 0.2.2
Summary: All-in-one image processing CLI — resize, convert, watermark, compress, and more
Author-email: kushal1o1 <kushal1o1@users.noreply.github.com>
License: MIT License
        
        Copyright (c) 2026 Kushal Baral
        
        Permission is hereby granted, free of charge, to any person obtaining a copy
        of this software and associated documentation files (the "Software"), to deal
        in the Software without restriction, including without limitation the rights
        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        copies of the Software, and to permit persons to whom the Software is
        furnished to do so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in all
        copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
        SOFTWARE.
        
Project-URL: Homepage, https://github.com/kushal1o1/ImageX
Project-URL: Repository, https://github.com/kushal1o1/ImageX
Project-URL: Documentation, https://github.com/kushal1o1/ImageX/blob/main/OPERATIONS.md
Project-URL: Changelog, https://github.com/kushal1o1/ImageX/releases
Project-URL: Issues, https://github.com/kushal1o1/ImageX/issues
Keywords: image-processing,cli,pillow,resize,convert,watermark,compress,metadata,batch,rename
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: Intended Audience :: End Users/Desktop
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
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
Classifier: Topic :: Multimedia :: Graphics
Classifier: Topic :: Multimedia :: Graphics :: Graphics Conversion
Classifier: Topic :: Utilities
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
imagex
```

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

## Features

| Feature | Description |
|---|---|
| Rotate | Rotate 90° Left, 90° Right, or 180° |
| Flip | Mirror horizontally or vertically |
| 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](https://github.com/kushal1o1/ImageX/blob/main/OPERATIONS.md).

## Install

```bash
# From PyPI (recommended)
pip install imagex

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

Then run `imagex` from any folder.

## Adding Features

See [CONTRIBUTION.md](https://github.com/kushal1o1/ImageX/blob/main/CONTRIBUTION.md) for the contribution guide.

## License

MIT
