Advertisement
ivandrofly

Subtitle Edit: Issue #8427

Jun 2nd, 2024 (edited)
640
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.81 KB | None | 0 0
  1. using System.Diagnostics;
  2.  
  3. namespace WinFormsApp1;
  4.  
  5. public partial class Form1 : Form
  6. {
  7.     public Form1()
  8.     {
  9.         InitializeComponent();
  10.  
  11.         var button = new Button()
  12.         {
  13.             Text = "@",
  14.             Width = 50, Height = 2 * 24,
  15.         };
  16.         button.Font = new Font("Arial", 24, FontStyle.Bold);
  17.         Controls.Add(button);
  18.  
  19.         // var graphics = button.CreateGraphics();
  20.         // var image = Image.FromHbitmap(graphics.GetHdc());
  21.  
  22.         _ = Task.Delay(1000 * 3).ContinueWith(_ =>
  23.         {
  24.             // #  
  25.             var bitmap = new Bitmap(button.Width, button.Height);
  26.             var graphics = Graphics.FromImage(bitmap);
  27.             var rectangle = button.RectangleToScreen(button.ClientRectangle); // client (app) => screen (monitor)
  28.             // var rectangle2 = button.RectangleToClient(button.ClientRectangle); // screen (monitor) => client (app)
  29.             graphics.CopyFromScreen(rectangle.Location, Point.Empty, button.Size);
  30.             // bitmap.Save("image.bmp");
  31.             // Process.Start("image.bmp");
  32.  
  33.             for (int i = 0; i < bitmap.Width; i++)
  34.             {
  35.                 for (int j = 0; j < bitmap.Height; j++)
  36.                 {
  37.                     var pixel = bitmap.GetPixel(i, j);
  38.                     if (pixel.R == button.ForeColor.R &&
  39.                         pixel.G == button.ForeColor.G &&
  40.                         pixel.B == button.ForeColor.B)
  41.                     {
  42.                         // NOTE: TEXT HAS BEEN FOUND BUTTON - OTHER SIZE TRY ANOTHER FONT
  43.                         Debugger.Break();
  44.                     }
  45.                 }
  46.             }
  47.         }, TaskScheduler.FromCurrentSynchronizationContext());
  48.     }
  49. }
  50.  
  51. // https://www.youtube.com/watch?v=x-tMlZ3LTw8
  52.  
  53. // https://github.com/SubtitleEdit/subtitleedit/issues/8427
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement