基本信息
文件名称:《Python编程入门与实践(微视频版)》代码 例10-10 获取像素.doc
文件大小:30 KB
总页数:2 页
更新时间:2025-07-12
总字数:约1.1千字
文档摘要

例10-10获取像素

例10-10获取像素

本例打开一张图片,获取指定位置(100,100)的像素值,然后将该像素值打印出来。

fromPILimportImage

img=Image.open(D:\\flower.jpg)

position=(100,100)

apixel=img.getpixel(position)

print(apixel)

输出结果:

(210,194,194)

代码解释:

(1)导入模块

fromPILimportImage

从Pillow库中导入Image模块。Image模块是Pillow库的核心,用于