在 Mono 中捕获窗口或小部件的图像
我正在尝试捕获当前窗口或小部件的图像并将其保存到图像文件中。问题是我在 Mono 上使用 Gtk#,所以它需要一个可以使用的解决方案。
本质上,是这样的:
myWidget.SaveImage("imageFile.png");
我更喜欢 PNG 或 JPEG,但原始位图也可以。
I'm trying to capture an image of either the current window or a widget and save it to an image file. The problem is that I'm using Gtk# on Mono, so it needs to be a solution that'll work with that.
Essentially, something like this:
myWidget.SaveImage("imageFile.png");
I'd prefer a PNG or JPEG, but a raw bitmap will do.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该能够使用 Gdk 来完成此操作。
这与这个问题非常相似:How to take a Screenshot with Mono C# ?
我还在这里找到了 php-gtk 示例: http://php-gtk.eu/code-hints/grabbing-a-screenshot-with-gdk
You should be able to do this using Gdk.
This is very similar to this question: How to take a screenshot with Mono C#?
I've also found a php-gtk example here: http://php-gtk.eu/code-hints/grabbing-a-screenshot-with-gdk