开发者

Draw a Fill Rectangle with low opacity

开发者 https://www.devze.com 2023-04-09 03:38 出处:网络
I a have a PictureBox with a picture in a Windows Form application in C# language.I want draw a FillRectangle in some location of picturebox.but i a开发者_如何转开发lso need to see picture of picture

I a have a PictureBox with a picture in a Windows Form application in C# language.I want draw a FillRectangle in some location of picturebox.but i a开发者_如何转开发lso need to see picture of picture box.how can i draw this rectangle with low opacity to see image of picturebox?


Do you mean:

using (Graphics g = Graphics.FromImage(pb.Image))
{
    using(Brush brush = new SolidBrush(your_color))
    {
        g.FillRectangle(brush, x, y, width, height);
    }
}

or you can use

Brush brush = new SolidBrush(Color.FromArgb(alpha, red, green, blue))

where alpha goes from 0 to 255, so a value of 128 for your alpha will give you 50% opactity.


You need to create a Graphics object based on your PictureBox image and draw what you want on it:

Graphics g = Graphics.FromImage(pictureBox1.Image);
g.FillRectangle(Brushes.Red, new Rectangle(10, 10, 200, 200))
pictureBox1.Refresh()

Or as suggested by @Davide Parias you can use Paint event handler:

private void pictureBox_Paint(object sender, PaintEventArgs e)
{
    e.Graphics.FillRectangle(Brushes.Red, new Rectangle(10, 10, 200, 200));
}
0

精彩评论

暂无评论...
验证码 换一张
取 消