我正试图在我的Windows 10机器上截取每个屏幕的截图。 我的系统有2个监视器,它们有多个DPI。
我正在尝试使用C#截取每个监视器的屏幕截图。 但是,我的缩放监视器报告错误的坐标: 一切都减半了。 因此,主监视器的屏幕截图仅为屏幕区域的1/4(宽度/ 2,高度/ 2)。
这是我的代码:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Drawing;
using System.Drawing.Imaging;
namespace CsSourceClient
{
class Program
{
static void Main(string[] args)
{
Screen[] screens;
screens = Screen.AllScreens;
int i = 0;
foreach (var screen in System.Windows.Forms.Screen.AllScreens)
{
var savePath = "monitor" + i+".jpg";
var x = screen.Bounds.Location.X;
var y = screen.Bounds.Location.Y;
var w = screen.Bounds.Width;
var h = screen.Bounds.Height;
Console.Out.WriteLine("Monitor: " + i + " extents:" + x + "," + y + " " + w + "," + h);
using (Bitmap bmp = new Bitmap(w, h))
{
using (Graphics g = Graphics.FromImage(bmp))
{
g.CopyFromScreen(x, y, 0, 0, bmp.Size);
}
bmp.Save(savePath, ImageFormat.Jpeg);
Console.Out.WriteLine("saved: " + savePath);
}
i++;
}
}
}
}
PS:根据我设置的内容得到不同的值" dpiaware"在清单文件中:https://social.msdn.microsoft.com/Forums/en-US/054c1d49-9f24-4617-aa83-9bc4f1bb4a5d/use-appmanifest-file-to-make-winforms-application-dpi-aware?forum=vbgeneral
如果我没有设置dpiaware,那么主监视器的界限会减半(裁剪掉屏幕的3/4)。 如果我将dpiaware设置为true,那么辅助监视器的界限会加倍(在屏幕截图中留下大的黑色区域)。
答案 0 :(得分:1)
正如评论中所提到的,解决方案是将app.manifest dpiAware标记设置为" true / pm" 。效果不同于将其设置为true。
<application xmlns="urn:schemas-microsoft-com:asm.v3">
<windowsSettings>
<dpiAware xmlns="http://schemas.microsoft.com/SMI/2005/WindowsSettings">true/pm</dpiAware>
</windowsSettings>
</application>