python实现图片变亮或者变暗的方法


Posted in Python onJune 01, 2015

本文实例讲述了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程序设计有所帮助。

Python 相关文章推荐
python写的一个squid访问日志分析的小程序
Sep 17 Python
python简单判断序列是否为空的方法
Jun 30 Python
Python使用QRCode模块生成二维码实例详解
Jun 14 Python
详解Python中 sys.argv[]的用法简明解释
Dec 20 Python
numpy中的高维数组转置实例
Apr 17 Python
Python实现的堆排序算法示例
Apr 29 Python
NumPy 数学函数及代数运算的实现代码
Jul 18 Python
Pandas库之DataFrame使用的学习笔记
Jun 21 Python
Django使用消息提示简单的弹出个对话框实例
Nov 15 Python
基于python代码批量处理图片resize
Jun 04 Python
Window10上Tensorflow的安装(CPU和GPU版本)
Dec 15 Python
详解Pycharm第三方库的安装及使用方法
Dec 29 Python
wxPython中listbox用法实例详解
Jun 01 #Python
在Python的Django框架下使用django-tagging的教程
May 30 #Python
使用url_helper简化Python中Django框架的url配置教程
May 30 #Python
在Python的Django框架中simple-todo工具的简单使用
May 30 #Python
Python中Django框架下的staticfiles使用简介
May 30 #Python
简单介绍Python的Django框架的dj-scaffold项目
May 30 #Python
Python的Django框架中settings文件的部署建议
May 30 #Python
You might like
Syphon 使用方法
2021/03/03 冲泡冲煮
杏林同学录(六)
2006/10/09 PHP
php imagecreatetruecolor 创建高清和透明图片代码小结
2010/05/15 PHP
ThinkPHP缓存方法S()概述
2014/06/13 PHP
php 参数过滤、数据过滤详解
2015/10/26 PHP
Zend Framework教程之配置文件application.ini解析
2016/03/10 PHP
PHP中加速、缓存扩展的区别和作用详解(eAccelerator、memcached、xcache、APC )
2016/07/09 PHP
详谈PHP程序Laravel 5框架的优化技巧
2016/07/18 PHP
PHP simplexml_load_file()函数讲解
2019/02/03 PHP
js中escape对应的C#解码函数 UrlDecode
2012/12/16 Javascript
JavaScript中的this关键字介绍与使用实例
2013/06/21 Javascript
一张表格告诉你windows.onload()与$(document).ready()的区别
2014/05/16 Javascript
node.js不得不说的12点内容
2014/07/14 Javascript
Bootstrap面板(Panels)的简单实现代码
2017/03/17 Javascript
重新认识vue之事件阻止冒泡的实现
2018/08/02 Javascript
vue封装swiper代码实例解析
2019/10/08 Javascript
一个基于flask的web应用诞生 bootstrap框架美化(3)
2017/04/11 Python
python通过pip更新所有已安装的包实现方法
2017/05/19 Python
python PyTorch参数初始化和Finetune
2018/02/11 Python
python 对象和json互相转换方法
2018/03/22 Python
Python查找文件中包含中文的行方法
2018/12/19 Python
神经网络相关之基础概念的讲解
2018/12/29 Python
python cumsum函数的具体使用
2019/07/29 Python
python实现Oracle查询分组的方法示例
2020/04/30 Python
python右对齐的实例方法
2020/07/05 Python
keras 模型参数,模型保存,中间结果输出操作
2020/07/06 Python
pandas数据分组groupby()和统计函数agg()的使用
2021/03/04 Python
分享CSS3制作卡片式图片的方法
2016/07/08 HTML / CSS
html5 实现客户端验证上传文件的大小(简单实例)
2016/05/15 HTML / CSS
int *p=NULL和*p= NULL有什么区别
2014/10/23 面试题
初中同学聚会邀请函
2014/02/03 职场文书
一年级小学生评语大全
2014/12/25 职场文书
2015年父亲节活动总结
2015/02/12 职场文书
赤壁观后感(2)
2015/06/15 职场文书
大学宣传委员竞选稿
2015/11/19 职场文书
Python中的matplotlib绘制百分比堆叠柱状图,并为每一个类别设置不同的填充图案
2022/04/20 Python