我跟随Huw Collingbourne程序使用C#创建了一个屏幕捕获程序。但是,我注意到了几个奇怪的项目,无论我使用他创建的程序还是修改后的程序都一样。具体来说,我创建了一个程序,该程序打开一个允许您捕获该区域的窗口。 我认为这与我计算机上的坐姿有关,但是如果其他人要使用我的屏幕捕获程序,则需要知道如何预测和解决此问题! 如果将Windows 10的显示设置为100%,我得到的信息将比所选窗口多一点;如果将显示设置为125%,则得到的显示区域很多。保留默认大小后,我的大小应为555、484。但是我捕获的更大。
public partial class Form1 : Form
{
//https://docs.microsoft.com/en-us/windows/desktop/api/winuser/nf-winuser-getwindowrect
[DllImport("user32.dll")]
private static extern IntPtr GetForegroundWindow();
[DllImport("user32.dll")]
private static extern IntPtr GetDesktopWindow();
[DllImport("user32.dll")]
private static extern bool GetWindowRect(IntPtr hWnd, ref Rectangle lpRect);
//ICON info
//https://docs.microsoft.com/en-us/windows/desktop/api/winuser/nf-winuser-getcursorinfo
[DllImport("user32.dll")]
private static extern bool GetIconInfo(IntPtr hIcon, out ICONINFO piconinfo);
[DllImport("user32.dll")]
private static extern bool GetCursorInfo(out CURSORINFO pci);
public struct POINT
{
public Int32 x;
public Int32 y;
}
public struct ICONINFO
{
public bool fIcon;
public Int32 xHotspot;
public Int32 yHotspot;
public IntPtr hbmMask;
public IntPtr hbmColor;
}
public struct CURSORINFO
{
public Int32 cbSize;
public Int32 flags;
public IntPtr hCursor;
public Point ptScreenPos;
}
GrabRegionForm grabForm;
public void GrabRect(Rectangle rect)
{
int rectWidth = rect.Width - rect.Left;
int rectHeight = rect.Height - rect.Top;
Bitmap bm = new Bitmap(rectWidth, rectHeight);
Graphics g = Graphics.FromImage(bm);
g.CopyFromScreen(rect.Left, rect.Top, 0, 0, new Size(rectWidth, rectHeight));
DrawMousePointer(g, Cursor.Position.X - rect.Left, Cursor.Position.Y - rect.Top);
this.pb_screengrab.Image = bm;
Clipboard.SetImage(bm);
}
}
public partial class GrabRegionForm : Form
{
public Rectangle formRect;
private Form1 mainForm;
[DllImport("user32.dll")]
public static extern bool ReleaseCapture();
[DllImport("user32.dll")]
public static extern int SendMessage(IntPtr hWnd, int Msg, int wParam, int lParam);
private void buttonOK_Click(object sender, EventArgs e)
{
formRect = new Rectangle(this.Left, this.Top, this.Left + this.Width, this.Top + this.Height);
this.Hide();
mainForm.GrabRect(formRect);
Close();
}
}
ScreenGrab with Display at 100%
答案 0 :(得分:0)
如果使用4.7之前的版本而不是Windows 10,请遵循Jimi的示例,并确保您注销并重新登录Windows。
来自Jimi https://stackoverflow.com/users/7444103/jimi 如何将应用配置为在DPI设置为How to configure an app to run correctly on a machine with a high DPI setting (e.g. 150%)?
的计算机上正确运行来自Jimi https://stackoverflow.com/users/7444103/jimi 将SetWindowPos与多个监视器Using SetWindowPos with multiple monitors
一起使用如果我将我的应用程序定位为Windows 10,则现在它非常简单。 如果使用Windows 10,Microsoft使使用4.7更改DPI设置更加容易。
https://docs.microsoft.com/en-us/dotnet/framework/winforms/high-dpi-support-in-windows-forms
声明与Windows 10的兼容性。 然后在Windows 10兼容性的推荐下,将以下内容添加到XML格式的app.manifest文件中。
supportedOS Id="{8e0f7a12-bfb3-4fe8-b9a5-48fd50a15a9a}"
在app.config文件中启用每个监视器的DPI感知。 Windows窗体引入了一个新元素来支持从.NET Framework 4.7开始添加的新功能和自定义项。要利用支持高DPI的新功能,请将以下内容添加到您的应用程序配置文件中。
转到System.Windows.Forms.ApplicationConfigurationSection的XML行
add key="DpiAwareness" value="PerMonitorV2"