Fifth commit

This commit is contained in:
lan daiqing
2022-07-28 21:35:42 +08:00
parent 3d78b6edb3
commit 493dc7062a
10 changed files with 93 additions and 122 deletions

View File

@@ -28,7 +28,7 @@ def imgCut(path, left, upper, right, lower):
# print(img.size) Picture Size
part = (left, upper, right, lower) # 设置剪切的大小
# 剪切函数的调用
# 函数的调用
cut_img = img.crop(part)
# 展示图片