On Wed, 16 Dec 2015 06:04:37 -0800, fsn761304 wrote:
> pixbufObj = Gdk.pixbuf_get_from_window(window, x, y, width, height) ...
> image = Image.frombuffer("RGB", (width, height),
> pixbufObj.get_pixels(), 'raw', 'RGB', 0, 1)The second-to-last argument should probably be Gdk.pixbuf_get_rowstride() rather than 0. -- https://mail.python.org/mailman/listinfo/python-list
