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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。