如何将当前窗口保存为 png 等图像文件?
我知道我可以从当前窗口中获取 gdkWindow。我什至可以得到一个图像。从这个图像结构中,我什至可以查询每个像素。但据我了解,我真正需要的是获得一个 pixbuf。
int width;
int height;
this.GetSize(width, height);
this.GdkWindow.GetImage(0,0,width,height).?
如何从 gtk 窗口或 gdk 窗口或 gdk 图像获取 pixbuf?
编辑
int width;
int height;
this.GetSize(out width, out height);
Pixbuf pixbuf = Pixbuf.FromDrawable (this.GdkWindow, this.Colormap, 0, 0, 0, 0, width, height);
pixbuf.Save("/tmp/out.png","png");
有点工作。png 以正确的大小导出,但它是模糊的。
编辑 2
解决方案正在发挥作用。模糊是 gnome 图像查看器的错误