python实现图片变亮或者变暗的方法
作者:皮蛋 时间:2023-02-20 03:59:00
本文实例讲述了python实现图片变亮或者变暗的方法。分享给大家供大家参考。具体实现方法如下:
import Image
# open an image file (.jpg or.png) you have in the working folder
im1 = Image.open("angelababy.jpg")
# multiply each pixel by 0.9 (makes the image darker)
# works best with .jpg and .png files, darker < 1.0 < lighter
# (.bmp and .gif files give goofy results)
# note that lambda is akin to a one-line function
im2 = im1.point(lambda p: p * 0.5)
# brings up the modified image in a viewer, simply saves the image as
# a bitmap to a temporary file and calls viewer associated with .bmp
# make certain you have associated an image viewer with this file type
im2.show()
# save modified image to working folder as Audi2.jpg
im2.save("angelababy2.jpg")
运行效果如下所示:
希望本文所述对大家的Python程序设计有所帮助。
标签:python,图片
0
投稿
猜你喜欢
Python CSS选择器爬取京东网商品信息过程解析
2022-01-17 21:18:17
Python使用Appium在移动端抓取微博数据的实现
2022-11-27 20:30:40
vue项目中的数据变化被watch监听并处理
2024-04-27 16:11:53
浅谈python的深浅拷贝以及fromkeys的用法
2023-07-20 04:45:33
python RSA加密的示例
2022-09-21 05:31:25
Div+CSS+JS树型菜单,可刷新
2024-04-17 09:52:18
django基于存储在前端的token用户认证解析
2023-12-27 19:14:59
python不到50行代码完成了多张excel合并的实现示例
2023-04-11 10:41:39
django 微信网页授权认证api的步骤详解
2021-09-15 03:58:40
中英文双语导航菜单
2007-05-11 17:04:00
详解python之heapq模块及排序操作
2023-10-14 04:55:20
基于PHP的加载类操作以及其他两种魔术方法的应用实例
2024-05-11 09:55:18
JS实现css边框样式设置工具
2008-05-25 16:22:00
php中对象引用和复制实例分析
2023-10-20 23:05:02
对python mayavi三维绘图的实现详解
2022-04-29 03:17:50
如何使用python爬虫爬取要登陆的网站
2022-09-07 08:04:46
JS脚本加载后执行相应回调函数的操作方法
2024-04-17 10:23:07
10个糟糕的IE Bug及其修复
2010-05-13 16:26:00
Python如何生成xml文件
2022-07-25 06:00:33
Python多线程编程之多线程加锁操作示例
2023-11-01 00:37:19