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

https://github.com/akmamun/image-crop

Automatic Cropping Image Using Python
https://github.com/akmamun/image-crop

cropping image-crop pil-image pillow python python3

Last synced: 5 days ago
JSON representation

Automatic Cropping Image Using Python

Awesome Lists containing this project

README

          

### Cropping Image Using Python
##### Using Python Pillow Library Crop Image. Automatically cropping image by horizontally and vertically

```python
pip install requirements.txt
```
### Run Python Script
```python
python imagecrop.py
```
##### Set Your image name
```python
image_input = Image.open("image_name.jpg")
```

##### Example
```python
image_input = Image.open("flowers.jpg")
```