/
ilya.petrash
/
SimplePyScripts
Обзор
Документация
Войти
/
ilya.petrash
/
SimplePyScripts
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
pil_pillow__examples/crop.py
15 строк
242 B
gil9red
Refactoring. Using black code style
02 июн 2023, 15:53
02 июн 2023, 15:53
e80b086
Код
Авторство
О чём код?
#!/usr/bin/env python3 # -*- coding: utf-8 -*- __author__ = "ipetrash" # pip install Pillow from PIL import Image image_file = "blur/input.jpg" img = Image.open(image_file) cropped_img = img.crop((175, 42, 336, 170)) cropped_img.show()