PyAccess Module
The PyAccess
module provides a CFFI/Python implementation of the PixelAccess Class. This implementation is far faster on PyPy than the PixelAccess version.
注解
Accessing individual pixels is fairly slow. If you arelooping over all of the pixels in an image, there is likelya faster way using other parts of the Pillow API.
Example
The following script loads an image, accesses one pixel from it, then changes it.
- from PIL import Image
- im = Image.open('hopper.jpg')
- px = im.load()
- print (px[4,4])
- px[4,4] = (0,0,0)
- print (px[4,4])
Results in the following:
- (23, 24, 68)
- (0, 0, 0)
Access using negative indexes is also possible.
- px[-1,-1] = (0,0,0)
- print (px[-1,-1])
PyAccess Class
当前内容版权归 ComingSpring 或其关联方所有,如需对内容或内容相关联开源项目进行关注与资助,请访问 ComingSpring .