Skip to content
This repository was archived by the owner on May 20, 2022. It is now read-only.

Commit 0840aa1

Browse files
committed
feat: pillow
1 parent 6eabd8c commit 0840aa1

File tree

4 files changed

+20
-1
lines changed

4 files changed

+20
-1
lines changed

demo-basis/thirdparty/__init__.py

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# coding:utf-8

demo-basis/thirdparty/jingronghui.jpg

205 KB
Loading

demo-basis/thirdparty/pillow.py

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# coding:utf-8
2+
3+
from PIL import Image
4+
5+
# 打开图片
6+
im = Image.open('jingronghui.jpg')
7+
# 获取图像尺寸
8+
w, h = im.size
9+
print('image size: %sx%s' % (w, h))
10+
# 缩放(压缩)
11+
im.thumbnail((w // 2, h // 2))
12+
print('resize image: %sx%s' % (w // 2, h // 2))
13+
# 保存
14+
im.save('thumbnail.jpg', 'jpeg')
15+
16+
# 更多用法,参考官方文档:
17+
# https://github.com/python-pillow/Pillow

requirements.txt

+2-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
# pip install -r requirements.txt
1+
# pip install -r requirements.txt
2+
pillow==6.0.0

0 commit comments

Comments
 (0)