Metadata-Version: 2.1
Name: imagemangler
Version: 0.1.4
Summary: 
Author: miguelvalente
Author-email: miguelvalente@protonmail.com
Requires-Python: >=3.10,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Requires-Dist: numpy (>=1.24.2,<2.0.0)
Requires-Dist: opencv-python (>=4.7.0.72,<5.0.0.0)
Requires-Dist: pillow (>=9.5.0,<10.0.0)
Requires-Dist: typer[all] (>=0.7.0,<0.8.0)
Description-Content-Type: text/markdown

# Image Mangler

Image Mangler is a command-line tool to deteriorate an image iteratively with using lossy algorithms.

# Installation

You can install Image Mangler via pip:

```bash
pip install imagemangler
```

# Usage

You can run Image Mangler by invoking the imagemangler command in the terminal, followed by the path of the image file you want to mangle:

```bash
imagemangler path/to/image.jpg
```

By default, Image Mangler will automatically mangle the image across all quality steps with a base quality of 70 and a quality step of 2. You can specify your own values for these parameters using the optional flags:


```bash
imagemangler path/to/image.jpg --quality 60 --quality-step 5 --no-auto-mangle
```

For a more details you can use `--help`:

```bash
imagemangler --help
```
