Form1.cs 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Threading.Tasks;
  9. using System.Windows.Forms;
  10. namespace WindowsFormsApp3
  11. {
  12. public partial class Form1 : Form
  13. {
  14. int a = 0;
  15. int i = 10;
  16. private string text = String.Empty;
  17. private Bitmap CreateImage(int Width, int Height)
  18. {
  19. Random rnd = new Random();
  20. //Создадим изображение
  21. Bitmap result = new Bitmap(Width, Height);
  22. //Вычислим позицию текста
  23. int Xpos = rnd.Next(0, Width - 50);
  24. int Ypos = rnd.Next(15, Height - 15);
  25. //Добавим различные цвета
  26. Brush[] colors = { Brushes.Black,
  27. Brushes.Red,
  28. Brushes.RoyalBlue,
  29. Brushes.Green };
  30. //Укажем где рисовать
  31. Graphics g = Graphics.FromImage((Image)result);
  32. //Пусть фон картинки будет серым
  33. g.Clear(Color.Gray);
  34. //Сгенерируем текст
  35. text = String.Empty;
  36. string ALF = "1234567890QWERTYUIOPASDFGHJKLZXCVBNM";
  37. for (int i = 0; i < 5; ++i)
  38. text += ALF[rnd.Next(ALF.Length)];
  39. //Нарисуем сгенирируемый текст
  40. g.DrawString(text,
  41. new Font("Arial", 15),
  42. colors[rnd.Next(colors.Length)],
  43. new PointF(Xpos, Ypos));
  44. //Добавим немного помех
  45. /////Линии из углов
  46. g.DrawLine(Pens.Black,
  47. new Point(0, 0),
  48. new Point(Width - 1, Height - 1));
  49. g.DrawLine(Pens.Black,
  50. new Point(0, Height - 1),
  51. new Point(Width - 1, 0));
  52. ////Белые точки
  53. for (int i = 0; i < Width; ++i)
  54. for (int j = 0; j < Height; ++j)
  55. if (rnd.Next() % 20 == 0)
  56. result.SetPixel(i, j, Color.White);
  57. return result;
  58. }
  59. public Form1()
  60. {
  61. InitializeComponent();
  62. }
  63. private void button1_Click(object sender, EventArgs e)
  64. {
  65. }
  66. private void button2_Click(object sender, EventArgs e)
  67. {
  68. var Form1 = new Form2();
  69. Form1.Show();
  70. }
  71. private void button3_Click(object sender, EventArgs e)
  72. {
  73. var Form1 = new Form3();
  74. Form1.Show();
  75. }
  76. }
  77. }