PIL是Python Imaging Library,它为python解释器提供了图像编辑函数。 PixelAccess类提供对PIL.Image数据的读写访问权限(像素级)。访问单个像素相当慢。如果要遍历图像中的所有像素,则可能会使用Pillow API的其他部分的方法更快。
putpixel()修改x,y处的像素。对于单波段图像,颜色作为单个数值给出;对于multi-band图像,颜色作为元组给出
用法: putpixel(self, xy, color)
参数:
xy:像素坐标,表示为(x,y)
value:-像素值。
返回值:具有像素的图像。
使用的图片:
# Importing Image from PIL package
from PIL import Image
# creating a image object
image = Image.open(r'C:\Users\System-Pc\Desktop\python.png')
width, height = image.size
for x in range(height):
image.putpixel( (x, x), (0, 0, 0, 255) )
image.show()
输出:
另一个例子:在这里,我们更改颜色参数。
图片已使用
# Importing Image from PIL package
from PIL import Image
# creating a image object
image = Image.open(r'C:\Users\System-Pc\Desktop\ybear.jpg')
width, height = image.size
for x in range(height):
image.putpixel( (x, x), (10, 10, 10, 255) )
image.show()
输出:
相关用法
- Python next()用法及代码示例
- Python os.dup()用法及代码示例
- Python set()用法及代码示例
- Python numpy.ma.ids()用法及代码示例
- Python PIL putdata()用法及代码示例
- Python PIL getcolors()用法及代码示例
- Python sympy.apart()用法及代码示例
- Python os.getcwd()用法及代码示例
- Python PIL putalpha()用法及代码示例
- Python os.pipe2()用法及代码示例
- Python iter()用法及代码示例
- Python os.getcwdb()用法及代码示例
- Python os.getgroups()用法及代码示例
注:本文由纯净天空筛选整理自Sunitamamgai大神的英文原创作品 Python PIL | putpixel() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。