Duplicate–do not use–Floodfill objects using C#

Duplicate–do not use–Floodfill objects using C#

In order to flood fill drawn objects, you can make use of the next sample:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;

namespace FloodFill
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }
        Bitmap bm;
        Graphics g;
        private bool SameColor(Color c1, Color c2)
        {
            return ((c1.A == c2.A) && (c1.B == c2.B) && (c1.G == c2.G) && (c1.R == c2.R));
        }
        private void tobien1(Bitmap bm, Point p, Color Color, Color LineColor)
        {
            Stack S = new Stack();
            S.Push(p);
            while (S.Count != 0)
            {
                p = S.Pop();
                Color CurrentColor =  bm.GetPixel(p.X, p.Y);
                if (!SameColor(CurrentColor, Color) && !SameColor(CurrentColor, LineColor))
                {
                    bm.SetPixel(p.X, p.Y, Color);
                    S.Push(new Point(p.X – 1, p.Y));
                    S.Push(new Point(p.X + 1, p.Y));
                    S.Push(new Point(p.X, p.Y – 1));
                    S.Push(new Point(p.X, p.Y + 1));
                }
            }
        }
        private void Form1_Load(object sender, EventArgs e)
        {
            g = this.CreateGraphics();
        }
        private void DrawRectangle(Bitmap bm, Point p, int width, int height, Color c)
        {
            Graphics g = Graphics.FromImage(bm);
            g.DrawRectangle(new Pen(c), p.X, p.Y, width, height);
        }
        private void Form1_Paint(object sender, PaintEventArgs e)
        {
            bm = new Bitmap(ClientSize.Width, ClientSize.Height);
            DrawRectangle(bm, new Point(100,100), 200, 50, Color.Blue);
            g.DrawImage(bm, new Point(0, 0));
        }
        private void button1_Click(object sender, EventArgs e)
        {
            tobien1(bm, new Point(120,120), Color.Violet, Color.Blue);
            g.DrawImage(bm, new Point(0, 0));
        }
    }
}

Share the Post:
Heading photo, Metadata.

What is Metadata?

What is metadata? Well, It’s an odd concept to wrap your head around. Metadata is essentially the secondary layer of data that tracks details about the “regular” data. The regular

XDR solutions

The Benefits of Using XDR Solutions

Cybercriminals constantly adapt their strategies, developing newer, more powerful, and intelligent ways to attack your network. Since security professionals must innovate as well, more conventional endpoint detection solutions have evolved

AI is revolutionizing fraud detection

How AI is Revolutionizing Fraud Detection

Artificial intelligence – commonly known as AI – means a form of technology with multiple uses. As a result, it has become extremely valuable to a number of businesses across

AI innovation

Companies Leading AI Innovation in 2023

Artificial intelligence (AI) has been transforming industries and revolutionizing business operations. AI’s potential to enhance efficiency and productivity has become crucial to many businesses. As we move into 2023, several