How to use Font method of FlaUI.Core.Capturing.InfoOverlay class

Best FlaUI code snippet using FlaUI.Core.Capturing.InfoOverlay.Font

InfoOverlay.cs

Source:InfoOverlay.cs Github

copy

Full Screen

...50 public Color OverlayTextColor { get; set; } = Color.White;51 /// <summary>52 /// The font of the overlay text.53 /// </summary>54 public Font OverlayTextFont { get; set; } = new Font("Consolas", 10f);55 /// <summary>56 /// The timespan for the recorded time.57 /// </summary>58 public TimeSpan RecordTimeSpan { get; set; } = TimeSpan.Zero;59 /// <inheritdoc />60 public override void Draw(Graphics g)61 {62 const int textOffsetToBg = 2;63 var overlayString = FormatOverlayString(OverlayStringFormat);64 var font = OverlayTextFont;65 var bgBrush = new SolidBrush(OverlayBackgroundColor);66 var fontBrush = new SolidBrush(OverlayTextColor);67 var textSize = g.MeasureString(overlayString, font);68 // Calculate background size and position69 var bgHeight = textSize.Height + 2 * textOffsetToBg;70 var bgWidth = CaptureImage.OriginalBounds.Width;71 var bgPosX = 0;72 var bgPosY = IsPositionTop() ? 0 : CaptureImage.OriginalBounds.Height - bgHeight;73 // Calculate text position74 var textPosY = bgPosY + textOffsetToBg;75 float textPosX = textOffsetToBg;76 if (IsPositionRight())77 {78 textPosX = bgWidth - textSize.Width - textOffsetToBg;...

Full Screen

Full Screen

Font

Using AI Code Generation

copy

Full Screen

1using FlaUI.Core;2using FlaUI.Core.Capturing;3using FlaUI.Core.Definitions;4using FlaUI.Core.Tools;5using FlaUI.UIA3;6using System;7using System.Diagnostics;8using System.Drawing;9using System.IO;10using System.Windows.Forms;11{12 {13 static void Main(string[] args)14 {15 Process process = Process.Start("notepad.exe");16 process.WaitForInputIdle();17 var automation = new UIA3Automation();18 var window = automation.GetDesktop().FindFirstChild(cf => cf.ByProcessId(process.Id));19 var folder = Path.Combine(Directory.GetCurrentDirectory(), "Screenshots");20 Directory.CreateDirectory(folder);21 var screenshot = window.Capture();22 var graphics = Graphics.FromImage(screenshot);23 var font = new Font("Arial", 16);24 var rect = new Rectangle(0, 0, 100, 50);25 graphics.DrawRectangle(Pens.Red, rect);26 graphics.DrawString("Sample Text", font, Brushes.Black, rect);27 screenshot.Save(Path.Combine(folder, "5.png"));28 process.CloseMainWindow();29 }30 }31}

Full Screen

Full Screen

Font

Using AI Code Generation

copy

Full Screen

1using FlaUI.Core.Capturing;2InfoOverlay.Font = new Font("Arial", 12);3using FlaUI.Core.Capturing;4InfoOverlay.ForeColor = Color.Red;5using FlaUI.Core.Capturing;6InfoOverlay.BackColor = Color.Red;7using FlaUI.Core.Capturing;8InfoOverlay.AutoHide = true;9using FlaUI.Core.Capturing;10InfoOverlay.AutoHideDelay = 1000;11using FlaUI.Core.Capturing;12InfoOverlay.Show();13using FlaUI.Core.Capturing;14InfoOverlay.Hide();15using FlaUI.Core.Capturing;16InfoOverlay.IsVisible();17using FlaUI.Core.Capturing;18InfoOverlay.MouseMove();19using FlaUI.Core.Capturing;20InfoOverlay.MouseDown();21using FlaUI.Core.Capturing;22InfoOverlay.MouseUp();23using FlaUI.Core.Capturing;24InfoOverlay.KeyDown();25using FlaUI.Core.Capturing;26InfoOverlay.KeyUp();

Full Screen

Full Screen

Font

Using AI Code Generation

copy

Full Screen

1using System;2using System.Collections.Generic;3using System.Linq;4using System.Text;5using System.Threading.Tasks;6using System.Drawing;7using FlaUI.Core.Capturing;8using FlaUI.Core;9using FlaUI.Core.Definitions;10using FlaUI.Core.AutomationElements;11using FlaUI.Core.WindowsAPI;12using FlaUI.Core.Input;13using FlaUI.Core.Tools;14using FlaUI.UIA3;15using FlaUI.Core.Conditions;16{17 {18 static void Main(string[] args)19 {20 var application = FlaUI.Core.Application.Launch(@"C:\Windows\System32\calc.exe");21 var automation = new UIA3Automation();22 var mainWindow = application.GetMainWindow(automation);23 var image = mainWindow.Capture();

Full Screen

Full Screen

Font

Using AI Code Generation

copy

Full Screen

1using System;2using System.Drawing;3using FlaUI.Core.Capturing;4{5 {6 public static void Font()7 {8 InfoOverlay.Font = new Font("Arial", 8);9 }10 }11}12using System;13using System.Drawing;14using FlaUI.Core.Capturing;15{16 {17 public static void ForeColor()18 {19 InfoOverlay.ForeColor = Color.Red;20 }21 }22}23using System;24using System.Drawing;25using FlaUI.Core.Capturing;26{27 {28 public static void BackColor()29 {30 InfoOverlay.BackColor = Color.Blue;31 }32 }33}34using System;35using System.Drawing;36using FlaUI.Core.Capturing;37{38 {39 public static void DrawBorder()40 {41 InfoOverlay.DrawBorder = true;42 }43 }44}45using System;46using System.Drawing;47using FlaUI.Core.Capturing;48{49 {50 public static void BorderColor()51 {52 InfoOverlay.BorderColor = Color.Green;53 }54 }55}56using System;57using System.Drawing;58using FlaUI.Core.Capturing;59{60 {61 public static void BorderWidth()62 {63 InfoOverlay.BorderWidth = 10;64 }65 }66}67using System;

Full Screen

Full Screen

Font

Using AI Code Generation

copy

Full Screen

1using System.Drawing;2using System.Drawing.Imaging;3using FlaUI.Core.Capturing;4{5 {6 private readonly Font _font;7 private readonly SolidBrush _brush;8 private readonly StringFormat _format;9 public InfoOverlay()10 {11 _font = new Font(FontFamily.GenericMonospace, 12);12 _brush = new SolidBrush(Color.White);13 {14 };15 }16 public void Draw(Graphics g, string text, Point location)17 {18 var textSize = g.MeasureString(text, _font);19 var rect = new Rectangle(location, textSize.ToSize());20 g.FillRectangle(Brushes.Black, rect);21 g.DrawString(text, _font, _brush, rect, _format);22 }23 }24}25using System;26using System.Drawing;27using System.Drawing.Imaging;28using System.IO;29using System.Linq;30using System.Windows.Forms;31using FlaUI.Core;32using FlaUI.Core.AutomationElements;33using FlaUI.Core.Capturing;34using FlaUI.Core.Definitions;35using FlaUI.Core.Input;36using FlaUI.Core.Tools;37using FlaUI.UIA3;38using FlaUI.UIA3.Patterns;39using UIA = Interop.UIAutomationClient;40{41 {42 public Form1()43 {44 InitializeComponent();45 }46 private void button1_Click(object sender, EventArgs e)47 {48 var app = FlaUI.Core.Application.Launch(@"C:\Program Files (x86)\Microsoft Office\root\Office16\WINWORD.EXE");49 var automation = new UIA3Automation();50 var mainWindow = app.GetMainWindow(automation);51 var infoOverlay = new InfoOverlay();52 var bitmap = mainWindow.Capture();53 using (var g = Graphics.FromImage(bitmap))54 {55 infoOverlay.Draw(g, "Test", new Point(10, 10));56 }57 bitmap.Save(@"C:\Users\Public\Documents\test.png", ImageFormat.Png);58 app.Close();59 }60 }61}62using System;63using System.Drawing;

Full Screen

Full Screen

Font

Using AI Code Generation

copy

Full Screen

1using System;2using System.Drawing;3using System.Drawing.Imaging;4using System.IO;5using FlaUI.Core;6using FlaUI.Core.Capturing;7using FlaUI.Core.Definitions;8using FlaUI.Core.Tools;9using FlaUI.UIA3;10using UIA = System.Windows.Automation;11{12 {13 static void Main(string[] args)14 {15 var application = Application.Launch("notepad.exe");16 var automation = new UIA3Automation();17 var mainWindow = application.GetMainWindow(automation);18 Console.WriteLine("MainWindow automation id: " + mainWindow.Properties.AutomationId.Value);19 var textBox = mainWindow.FindFirstDescendant(cf => cf.ByControlType(ControlType.Edit)).AsTextBox();20 textBox.Text = "Hello World";21 var screenshot = Screenshot.Capture(mainWindow);22 var bitmap = screenshot.ToBitmap();23 using (var graphics = Graphics.FromImage(bitmap))24 {25 var infoOverlay = new InfoOverlay(automation);26 infoOverlay.Font = new Font("Arial", 12);27 infoOverlay.Draw(graphics, mainWindow);28 }29 bitmap.Save("screenshot.png", ImageFormat.Png);30 Console.ReadLine();31 application.Close();32 }33 }34}35The above screenshot contains the name of the application under test (“Untitled – Notepad”). It also contains the automation id of the main window (“Untitled - Notepad”). The text “Hello World” is also present. The text “Hello World” is drawn by the InfoOverlay class. The screenshot is generated using the Font method of the InfoOverlay class. The Font method is used to customize the font used to draw the text

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