我想知道是否可以通过pgmagick对图像执行低级像素操作。特别是,我想模仿这里显示的C ++ GraphicsMagick API中的功能:
http://www.graphicsmagick.org/Magick++/Image.html#low-level-image-pixel-access
当我尝试以下操作时:
import pgmagick
im = pgmagick.Image('cow.png')
pixel_cache = im.getPixels(0,0,100,100)
我收到如下错误:
AttributeError: 'Image' object has no attribute 'getPixels'
pgmagick中的等效功能是什么?