标签:inf ima class python import ESS top pre ini
from PIL import Image from PIL import ImageEnhance im = Image.open(r"C:\Users\Administrator\Desktop\1.jpg") om = ImageEnhance.Brightness(im) brightness = 1.5 image_brightened = om.enhance(brightness) image_brightened.show()
标签:inf ima class python import ESS top pre ini
原文地址:https://www.cnblogs.com/Glzt/p/12698643.html