获取特定应用程序的屏幕截图(Android模拟器)

时间:2018-12-13 13:05:14

标签: c# screenshot

我想对Nox Player或MEmu Player进行截图。我尝试了以下所有主题:Get a screenshot of a specific application,但仍然遇到问题。

在遵循最佳答案(带有绿色复选标记的答案)中,我可以截图,但是有问题: -目标窗口必须位于前景中并且没有任何东西覆盖。

我尝试了使用PrintWindow win32的下一个解决方案(在下一条注释中)。这是单击按钮时的代码:

var proc = Process.GetProcessesByName("Nox")[0];
Bitmap bmp = PrintWindow(this.Handle);
pictureBox.Image = bmp;

但是RECT对于所有变量Left,Top,Right,Bottom总是返回0。

0 个答案:

没有答案