python使用PIL模块获取图片像素点的方法
作者:ABigCaiBird
今天小编就为大家分享一篇python使用PIL模块获取图片像素点的方法,具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧
如下所示:
from PIL import Image ########获取图片指定像素点的像素 def getPngPix(pngPath = "aa.png",pixelX = 1,pixelY = 1): img_src = Image.open(pngPath) img_src = img_src.convert('RGBA') str_strlist = img_src.load() data = str_strlist[pixelX,pixelY] img_src.close() return data print(getPngPix())
以上这篇python使用PIL模块获取图片像素点的方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持脚本之家。
您可能感兴趣的文章:
- Python3中正则模块re.compile、re.match及re.search函数用法详解
- python 3.7.0 下pillow安装方法
- Python实现更改图片尺寸大小的方法(基于Pillow包)
- python正则表达式re之compile函数解析
- python通过pil将图片转换成黑白效果的方法
- python安装pil库方法及代码
- python使用pil进行图像处理(等比例压缩、裁剪)实例代码
- python中PIL安装简单教程
- python通过pil为png图片填充上背景颜色的方法
- Python中请不要再用re.compile了
- Python通过PIL获取图片主要颜色并和颜色库进行对比的方法
- Python实现图片裁剪的两种方式(Pillow和OpenCV)
- python3读取图片并灰度化图片的四种方法(OpenCV、PIL.Image、TensorFlow方法)总结
- Python的PIL库中getpixel方法的使用
- Python3安装Pillow与PIL的方法
- Linux上安装Python的PIL和Pillow库处理图片的实例教程
- python实现通过pil模块对图片格式进行转换的方法
- Python图像处理库PIL详细使用说明