An open API service indexing awesome lists of open source software.

https://github.com/dev-muhammad/imagee

Simple image optimization tool
https://github.com/dev-muhammad/imagee

image-optimizer image-processing

Last synced: 2 months ago
JSON representation

Simple image optimization tool

Awesome Lists containing this project

README

          

# Imagee
## Simple image optimization tool
Install with pip
```
pip install imagee
```
Optimaze image with simple way

```
from imagee import Imagee
image_path = "images/peach.jpg"
output_path = "images/min_peach.png"
im = Imagee()
im.read(image_path)
print(im.format)
print(im.size)
im.optimaze()
print(im.optimized_size)
print(im.optimization_rate)
im.save(output_path)
```