How to use GetBoundsByScreenIndex method of FlaUI.Core.Capturing.Capture class

Best FlaUI code snippet using FlaUI.Core.Capturing.Capture.GetBoundsByScreenIndex

Capture.cs

Source:Capture.cs Github

copy

Full Screen

...31 Rectangle capturingRectangle;32 // Take the appropriate screen if requested33 if (screenIndex >= 0 && screenIndex < User32.GetSystemMetrics(SystemMetric.SM_CMONITORS))34 {35 var rectangle = GetBoundsByScreenIndex(screenIndex);36 capturingRectangle = rectangle;37 }38 else39 {40 // Use the entire desktop41 capturingRectangle = new Rectangle(42 User32.GetSystemMetrics(SystemMetric.SM_XVIRTUALSCREEN), User32.GetSystemMetrics(SystemMetric.SM_YVIRTUALSCREEN),43 User32.GetSystemMetrics(SystemMetric.SM_CXVIRTUALSCREEN), User32.GetSystemMetrics(SystemMetric.SM_CYVIRTUALSCREEN));44 }45 return Rectangle(capturingRectangle, settings);46 }47 /// <summary>48 /// Captures all screens an element is on.49 /// </summary>50 public static CaptureImage ScreensWithElement(AutomationElement element, CaptureSettings settings = null)51 {52 var elementRectangle = element.BoundingRectangle;53 var intersectedScreenBounds = new List<Rectangle>();54 // Calculate which screens intersect with the element55 for (var screenIndex = 0; screenIndex < User32.GetSystemMetrics(SystemMetric.SM_CMONITORS); screenIndex++)56 {57 var screenRectangle = GetBoundsByScreenIndex(screenIndex);58 if (screenRectangle.IntersectsWith(elementRectangle))59 {60 intersectedScreenBounds.Add(screenRectangle);61 }62 }63 if (intersectedScreenBounds.Count > 0)64 {65 var minX = intersectedScreenBounds.Min(x => x.Left);66 var maxX = intersectedScreenBounds.Max(x => x.Right);67 var minY = intersectedScreenBounds.Min(x => x.Top);68 var maxY = intersectedScreenBounds.Max(x => x.Bottom);69 var captureRect = new Rectangle(minX, minY, maxX - minX, maxY - minY);70 return Rectangle(captureRect, settings);71 }72 // Fallback to the whole screen73 return Screen();74 }75 /// <summary>76 /// Captures an element and returns the image.77 /// </summary>78 public static CaptureImage Element(AutomationElement element, CaptureSettings settings = null)79 {80 return Rectangle(element.BoundingRectangle, settings);81 }82 /// <summary>83 /// Captures a rectangle inside an element and returns the image.84 /// </summary>85 public static CaptureImage ElementRectangle(AutomationElement element, Rectangle rectangle, CaptureSettings settings = null)86 {87 var elementBounds = element.BoundingRectangle;88 // Calculate the rectangle that should be captured89 var capturingRectangle = new Rectangle(elementBounds.Left + rectangle.Left, elementBounds.Top + rectangle.Top, rectangle.Width, rectangle.Height);90 // Check if the element contains the rectangle that should be captured91 if (!elementBounds.Contains(capturingRectangle))92 {93 throw new FlaUIException($"The given rectangle ({capturingRectangle}) is out of bounds of the element ({elementBounds}).");94 }95 return Rectangle(capturingRectangle, settings);96 }97 /// <summary>98 /// Captures a specific area from the screen.99 /// </summary>100 public static CaptureImage Rectangle(Rectangle bounds, CaptureSettings settings = null)101 {102 // Calculate the size of the output rectangle103 var outputRectangle = CaptureUtilities.ScaleAccordingToSettings(bounds, settings);104 Bitmap bmp;105 if (outputRectangle.Width == bounds.Width || outputRectangle.Height == bounds.Height)106 {107 // Capture directly without any resizing108 bmp = CaptureDesktopToBitmap(bounds.Width, bounds.Height, (dest, src) =>109 {110 Gdi32.BitBlt(dest, outputRectangle.X, outputRectangle.Y, outputRectangle.Width, outputRectangle.Height, src, bounds.X, bounds.Y, CopyPixelOperation.SourceCopy | CopyPixelOperation.CaptureBlt);111 });112 }113 else114 {115 // Capture with scaling116 bmp = CaptureDesktopToBitmap(outputRectangle.Width, outputRectangle.Height, (dest, src) =>117 {118 Gdi32.SetStretchBltMode(dest, StretchMode.STRETCH_HALFTONE);119 Gdi32.StretchBlt(dest, outputRectangle.X, outputRectangle.Y, outputRectangle.Width, outputRectangle.Height, src, bounds.X, bounds.Y, bounds.Width, bounds.Height, TernaryRasterOperations.SRCCOPY | TernaryRasterOperations.CAPTUREBLT);120 });121 }122 return new CaptureImage(bmp, bounds, settings);123 }124 private static Rectangle GetBoundsByScreenIndex(int screenIndex)125 {126 var monitors = new List<MonitorInfo>();127 User32.EnumDisplayMonitors(IntPtr.Zero, IntPtr.Zero, MonitorDelegate, IntPtr.Zero);128 var monitorRect = monitors[screenIndex].monitor;129 return new Rectangle(monitorRect.left, monitorRect.top, monitorRect.right - monitorRect.left, monitorRect.bottom - monitorRect.top);130 bool MonitorDelegate(IntPtr hMonitor, IntPtr hdcMonitor, ref RECT lprcMonitor, IntPtr dwData)131 {132 var mi = new MonitorInfo();133 mi.size = (uint)Marshal.SizeOf(mi);134 var success = User32.GetMonitorInfo(hMonitor, ref mi);135 monitors.Add(mi);136 return true;137 }138 }...

Full Screen

Full Screen

GetBoundsByScreenIndex

Using AI Code Generation

copy

Full Screen

1using System;2using System.Drawing;3using System.Windows;4using FlaUI.Core.Capturing;5using FlaUI.Core.Definitions;6using FlaUI.Core.Tools;7using FlaUI.UIA3;8using FlaUI.Core.AutomationElements;9using FlaUI.Core;10using FlaUI.Core.Conditions;11using FlaUI.Core.WindowsAPI;12using FlaUI.Core.Input;13using FlaUI.Core.WindowsAPI;14using System.Windows.Automation;

Full Screen

Full Screen

GetBoundsByScreenIndex

Using AI Code Generation

copy

Full Screen

1using System;2using System.Drawing;3using FlaUI.Core.Capturing;4using FlaUI.Core.Input;5using FlaUI.Core.WindowsAPI;6{7 {8 public static Rectangle GetBoundsByScreenIndex(int screenIndex)9 {10 var screen = Screen.AllScreens[screenIndex];11 return new Rectangle(screen.Bounds.X, screen.Bounds.Y, screen.Bounds.Width, screen.Bounds.Height);12 }13 }14}15using System;16using System.Drawing;17using FlaUI.Core.Capturing;18using FlaUI.Core.Input;19using FlaUI.Core.WindowsAPI;20{21 {22 public static Rectangle GetBoundsByScreenIndex(int screenIndex)23 {24 var screen = Screen.AllScreens[screenIndex];25 return new Rectangle(screen.Bounds.X, screen.Bounds.Y, screen.Bounds.Width, screen.Bounds.Height);26 }27 }28}29using System;30using System.Drawing;31using FlaUI.Core.Capturing;32using FlaUI.Core.Input;33using FlaUI.Core.WindowsAPI;34{35 {36 public static Rectangle GetBoundsByScreenIndex(int screenIndex)37 {38 var screen = Screen.AllScreens[screenIndex];39 return new Rectangle(screen.Bounds.X, screen.Bounds.Y, screen.Bounds.Width, screen.Bounds.Height);40 }41 }42}43using System;44using System.Drawing;45using FlaUI.Core.Capturing;46using FlaUI.Core.Input;47using FlaUI.Core.WindowsAPI;48{49 {50 public static Rectangle GetBoundsByScreenIndex(int screenIndex)51 {52 var screen = Screen.AllScreens[screenIndex];53 return new Rectangle(screen.Bounds.X, screen.Bounds.Y, screen.Bounds.Width, screen.Bounds.Height);54 }55 }56}

Full Screen

Full Screen

GetBoundsByScreenIndex

Using AI Code Generation

copy

Full Screen

1using System;2using FlaUI.Core.Capturing;3using FlaUI.Core;4using FlaUI.Core.Input;5using FlaUI.Core.AutomationElements;6using FlaUI.Core.Definitions;7using FlaUI.Core.WindowsAPI;8using System.Drawing;9using System.Drawing.Imaging;10using System.IO;11using System.Threading;12{13 {14 public static void CaptureScreenByIndex(int screenIndex)15 {16 var bounds = GetBoundsByScreenIndex(screenIndex);17 var bitmap = new Bitmap(bounds.Width, bounds.Height, PixelFormat.Format32bppArgb);18 using (var graphics = Graphics.FromImage(bitmap))19 {20 graphics.CopyFromScreen(new Point(bounds.Left, bounds.Top), Point.Empty, bounds.Size);21 }22 bitmap.Save(@"C:\Users\Public\Documents\FlaUICapture.png", ImageFormat.Png);23 }24 public static Rectangle GetBoundsByScreenIndex(int screenIndex)25 {26 var screen = Screen.AllScreens[screenIndex];27 return screen.Bounds;28 }29 }30}31using System;32using FlaUI.Core.Capturing;33using FlaUI.Core;34using FlaUI.Core.Input;35using FlaUI.Core.AutomationElements;36using FlaUI.Core.Definitions;37using FlaUI.Core.WindowsAPI;38using System.Drawing;39using System.Drawing.Imaging;40using System.IO;41using System.Threading;42{43 {44 public static void CaptureScreenByIndex(int screenIndex)45 {46 var bounds = GetBoundsByScreenIndex(screenIndex);47 var bitmap = new Bitmap(bounds.Width, bounds.Height, PixelFormat.Format32bppArgb);48 using (var graphics = Graphics.FromImage(bitmap))49 {50 graphics.CopyFromScreen(new

Full Screen

Full Screen

GetBoundsByScreenIndex

Using AI Code Generation

copy

Full Screen

1using FlaUI.Core.Capturing;2using FlaUI.Core.Caching;3using FlaUI.Core.Conditions;4using FlaUI.Core.Definitions;5using FlaUI.Core.Input;6using FlaUI.Core.Tools;7using FlaUI.UIA3;8using System;9using System.Drawing;10using System.Drawing.Imaging;11using System.Windows.Forms;12{13 {14 static void Main(string[] args)15 {16 var application = FlaUI.Core.Application.Launch(@"C:\Windows\System32\notepad.exe");17 using (var automation = new UIA3Automation())18 {19 var window = application.GetMainWindow(automation);20 var screenIndex = window.Properties.ScreenIndex;21 var bounds = Capture.GetBoundsByScreenIndex(screenIndex);22 var bitmap = new Bitmap(bounds.Width, bounds.Height, PixelFormat.Format32bppArgb);23 using (var graphics = Graphics.FromImage(bitmap))24 {25 Capture.CaptureWindow(window, graphics);26 }27 bitmap.Save("test.png", ImageFormat.Png);28 }29 }30 }31}

Full Screen

Full Screen

GetBoundsByScreenIndex

Using AI Code Generation

copy

Full Screen

1using System;2using System.Drawing;3using System.Windows.Forms;4using FlaUI.Core.Capturing;5{6 {7 static void Main(string[] args)8 {9 int screenIndex = 0;10 Rectangle bounds = Capture.GetBoundsByScreenIndex(screenIndex);11 Bitmap bitmap = new Bitmap(bounds.Width, bounds.Height);12 Graphics graphics = Graphics.FromImage(bitmap);13 graphics.CopyFromScreen(bounds.X, bounds.Y, 0, 0, bounds.Size);14 bitmap.Save("screenshot.png");15 MessageBox.Show("Screenshot saved to screenshot.png");16 }17 }18}

Full Screen

Full Screen

GetBoundsByScreenIndex

Using AI Code Generation

copy

Full Screen

1using System;2using System.Drawing;3using FlaUI.Core.Capturing;4{5 {6 static void Main(string[] args)7 {8 Rectangle rect = Capture.GetBoundsByScreenIndex(1);9 Console.WriteLine("The bounds of the screen with index 1 are: {0}", rect);10 }11 }12}13using System;14using System.Drawing;15using FlaUI.Core.Capturing;16{17 {18 static void Main(string[] args)19 {20 Rectangle rect = Capture.GetBoundsByScreenIndex(1);21 Rectangle rect2 = Capture.GetBoundsByScreen(rect);22 Console.WriteLine("The bounds of the screen with index 1 are: {0}", rect2);23 }24 }25}26using System;27using System.Drawing;28using FlaUI.Core.Capturing;29{30 {31 static void Main(string[] args)32 {33 Rectangle rect = Capture.GetBoundsByScreenIndex(1);34 int index = Capture.GetScreenIndexByBounds(rect);35 Console.WriteLine("The index of the screen with the same bounds as rect is: {0}", index);36 }37 }38}39using System;40using System.Drawing;41using FlaUI.Core.Capturing;42{43 {44 static void Main(string[] args)45 {

Full Screen

Full Screen

GetBoundsByScreenIndex

Using AI Code Generation

copy

Full Screen

1using FlaUI.Core.Capturing;2using System;3using System.Drawing;4using System.Windows.Forms;5{6 {7 public Form1()8 {9 InitializeComponent();10 }11 private void button1_Click(object sender, EventArgs e)12 {13 Capture capture = new Capture();14 int screenIndex = 1;15 Rectangle bounds = capture.GetBoundsByScreenIndex(screenIndex);16 MessageBox.Show(bounds.ToString());17 }18 }19}

Full Screen

Full Screen

GetBoundsByScreenIndex

Using AI Code Generation

copy

Full Screen

1using FlaUI.Core.Capturing;2using FlaUI.Core.AutomationElements;3using FlaUI.Core;4using System;5using System.Windows;6using System.Windows.Media;7using System.Windows.Media.Imaging;8using System.Drawing;9using System.Drawing.Imaging;10using System.Windows.Interop;11{12 {13 static void Main(string[] args)14 {15 var screenBounds = Capture.GetBoundsByScreenIndex(0);16 var image = Capture.CaptureScreen(screenBounds);17 image.Save("ScreenCapture.png");18 }19 }20}21using FlaUI.Core.Capturing;22using FlaUI.Core.AutomationElements;23using FlaUI.Core;24using System;25using System.Windows;26using System.Windows.Media;27using System.Windows.Media.Imaging;28using System.Drawing;29using System.Drawing.Imaging;30using System.Windows.Interop;31{32 {33 static void Main(string[] args)34 {35 var screenBounds = Capture.GetBoundsByScreenIndex(0);36 var image = Capture.CaptureScreen(screenBounds);37 image.Save("ScreenCapture.png");38 }39 }40}41using FlaUI.Core.Capturing;42using FlaUI.Core.AutomationElements;43using FlaUI.Core;44using System;45using System.Windows;46using System.Windows.Media;47using System.Windows.Media.Imaging;48using System.Drawing;49using System.Drawing.Imaging;50using System.Windows.Interop;51{52 {53 static void Main(string[] args)54 {55 var screenBounds = Capture.GetBoundsByScreenIndex(0);56 var image = Capture.CaptureScreen(screenBounds

Full Screen

Full Screen

Automation Testing Tutorials

Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.

LambdaTest Learning Hubs:

YouTube

You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.

Run FlaUI automation tests on LambdaTest cloud grid

Perform automation testing on 3000+ real desktop and mobile devices online.

Try LambdaTest Now !!

Get 100 minutes of automation test minutes FREE!!

Next-Gen App & Browser Testing Cloud

Was this article helpful?

Helpful

NotHelpful