12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Data;
- using System.Drawing;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using System.Windows.Forms;
- namespace WindowsFormsApp3
- {
- public partial class Form1 : Form
- {
- int a = 0;
- int i = 10;
-
- private string text = String.Empty;
- private Bitmap CreateImage(int Width, int Height)
- {
- Random rnd = new Random();
- //Создадим изображение
- Bitmap result = new Bitmap(Width, Height);
- //Вычислим позицию текста
- int Xpos = rnd.Next(0, Width - 50);
- int Ypos = rnd.Next(15, Height - 15);
- //Добавим различные цвета
- Brush[] colors = { Brushes.Black,
- Brushes.Red,
- Brushes.RoyalBlue,
- Brushes.Green };
- //Укажем где рисовать
- Graphics g = Graphics.FromImage((Image)result);
- //Пусть фон картинки будет серым
- g.Clear(Color.Gray);
- //Сгенерируем текст
- text = String.Empty;
- string ALF = "1234567890QWERTYUIOPASDFGHJKLZXCVBNM";
- for (int i = 0; i < 5; ++i)
- text += ALF[rnd.Next(ALF.Length)];
- //Нарисуем сгенирируемый текст
- g.DrawString(text,
- new Font("Arial", 15),
- colors[rnd.Next(colors.Length)],
- new PointF(Xpos, Ypos));
- //Добавим немного помех
- /////Линии из углов
- g.DrawLine(Pens.Black,
- new Point(0, 0),
- new Point(Width - 1, Height - 1));
- g.DrawLine(Pens.Black,
- new Point(0, Height - 1),
- new Point(Width - 1, 0));
- ////Белые точки
- for (int i = 0; i < Width; ++i)
- for (int j = 0; j < Height; ++j)
- if (rnd.Next() % 20 == 0)
- result.SetPixel(i, j, Color.White);
- return result;
- }
- public Form1()
- {
- InitializeComponent();
- }
- private void button1_Click(object sender, EventArgs e)
- {
-
-
- }
- private void button2_Click(object sender, EventArgs e)
- {
- var Form1 = new Form2();
- Form1.Show();
- }
- private void button3_Click(object sender, EventArgs e)
- {
- var Form1 = new Form3();
- Form1.Show();
-
- }
- }
- }
|