python修改图片尺寸和DPI

使用PIL库

pip3 install pillow
'''
# !/usr/bin/python3
# -*- coding: utf-8 -*-
@Time : 2022/4/21 17:16
@Author : Qiufen.Chen
@FileName: 111.py
@Software: PyCharm
'''

from PIL import Image

def Image():
	# 待处理图片存储路径
	img = Image.open('C:/Users/KerryChen/Desktop/111.jpg')
	# Resize图片大小,入口参数为一个tuple,新的图片大小
	img = img.resize((600, 800))

	#处理后的图片的存储路径,以及存储格式
	img.save('C:/Users/KerryChen/Desktop/222.jpg', dpi=(300,300))

if __name__ == "__main__":
	Image()

你可能感兴趣的:(python学习,pytorch)