Metadata-Version: 2.1
Name: image_processing_toolkit_wwy
Version: 1.0.0
Summary: A simple toolkit for image processing
Home-page: http://www.example.com
Author: 202313093029_.wwy
Author-email: 202313093029@cuc.edu.cn
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: Pillow
Provides-Extra: dev
Requires-Dist: check-manifest; extra == "dev"
Provides-Extra: test
Requires-Dist: coverage; extra == "test"

# Image Processing Toolkit

A simple Python toolkit for basic image processing tasks including conversion, filtering, and analysis.

## Installation

```{bash}
pip install image_processing_toolkit
```
## Usage
```{python}
from image_processing_toolkit import convert_image_format, apply_filter, color_histogram

# Convert image format
convert_image_format('path/to/input.jpg', 'path/to/output.png', 'PNG')

# Apply filter
apply_filter('path/to/input.jpg', 'path/to/output.jpg', 'BLUR')

# Generate color histogram
histogram = color_histogram('path/to/image.jpg')
print(histogram)
```




