Metadata-Version: 2.1
Name: VersaImageX
Version: 0.2
Summary: A Python library for image format conversion using Pillow.
Home-page: https://github.com/MonirH533/VersaImageX
Author: Monir Hossain
Author-email: monirhossain0954@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Description-Content-Type: text/markdown
Requires-Dist: Pillow

# VersaImageX

VersaImageX is a Python library that allows you to easily convert images from one format to another using the Pillow library. It provides a simple interface to perform image format conversions with various options for quality and compression.

## Features

- Convert images between popular formats, such as JPEG, PNG, WebP, and TIFF.
- Automatically handle format-specific optimizations and conversions.
- Customize the conversion process with optional keyword arguments.

## Installation

You can install VersaImageX using pip:

pip install VersaImageX
Usage

from versa_image_x import convert_image

# Example: Convert PNG to JPEG
png_to_jpeg_result = convert_image('sample.png', 'sample_converted.jpeg', 'JPEG')
print(f'Successfully converted PNG to JPEG: {png_to_jpeg_result}')
Documentation
For detailed documentation and usage examples, please visit the official documentation.

Contributing
If you would like to contribute to VersaImageX, please follow our contribution guidelines.

License
This project is licensed under the MIT License - see the LICENSE file for details.

Contact
For any questions or feedback, please contact Your Name.

Acknowledgments
VersaImageX is built on top of the Pillow library.
vbnet




