我想知道是否可以通过 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 中的等效功能是什么?