二种方法:
一、代码实现
1.引入相关api
1 2 3 4 5 6 7 8 9 10 11
| [DllImport("gdi32.dll", EntryPoint = "GetDeviceCaps", SetLastError = true)] private static extern int GetDeviceCaps(IntPtr hdc, int nIndex);
enum DeviceCap { VERTRES = 10, PHYSICALWIDTH = 110, SCALINGFACTORX = 114, DESKTOPVERTRES = 117, }
|
2.获取屏缩放因子
1 2 3 4 5 6 7 8 9 10 11
| private static double GetScreenScalingFactor() { var g = Graphics.FromHwnd(IntPtr.Zero); IntPtr desktop = g.GetHdc(); var physicalScreenHeight = GetDeviceCaps(desktop, (int)DeviceCap.DESKTOPVERTRES); var screenScalingFactor = (double)physicalScreenHeight / Screen.PrimaryScreen.Bounds.Height; return screenScalingFactor; }
|
3.获取屏幕分辨率
1 2 3 4 5 6 7 8 9
| public static int[] GetScreenResolution() { double d = GetScreenScalingFactor(); int screenWidth = Convert.ToInt32(Screen.PrimaryScreen.Bounds.Width * d); int screenHeight = Convert.ToInt32(Screen.PrimaryScreen.Bounds.Height * d); return new int[] { screenWidth, screenHeight }; }
|
4.获取屏幕图像
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
| public static void GetScreenPicFile() { int[] screenResolution = PicLibrary.PicClass.GetScreenResolution(); int screenWidth = screenResolution[0]; int screenHeight = screenResolution[1]; using (Bitmap screenshot = new Bitmap(screenWidth, screenHeight)) { using (Graphics graphics = Graphics.FromImage(screenshot)) { graphics.CopyFromScreen(0, 0, 0, 0, new Size(screenWidth, screenHeight)); } string filePath = Environment.GetFolderPath(Environment.SpecialFolder.Desktop) + "\\screenshot.png"; } screenshot.Save(filePath); }
|
2.配置实现。
https://www.chinesehongker.com/portal.php?mod=view&aid=3248