python使用PIL模块获取图片像素点的方法

时间:2022-09-14 23:09:37

如下所示:

?
1
2
3
4
5
6
7
8
9
10
11
12
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模块获取图片像素点的方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持服务器之家。

原文链接:https://blog.csdn.net/caobin0825/article/details/80338305