填充面板有三种颜色的渐变

时间:2015-05-20 03:01:33

标签: c# winforms colors color-picker lineargradientbrush

我正在研究项目,我必须使用C#做一些颜色选择器。

所以我决定它将成为Win Forms App中具有此背景的Panel。

背景应该有rgb中的三种颜色的渐变:红色(0 - 255),蓝色(0 - 255)和绿色= 0.

gu0oJ.png

但是我找不到任何关于我应该使用什么的信息。

我试着编写一些代码,这就是我所做的。

{
public partial class Form1 : Form
{
    public Form1()
    {
        InitializeComponent();
    }



    private void Form1_Load(object sender, EventArgs e)
    {
        panel1.Paint += new PaintEventHandler(panel1_Paint);
        panel1.Refresh();
    }

    private void panel1_Paint(object sender, PaintEventArgs e)
    {
        Point startPoint = new Point(0, 0);
        Point endPoint = new Point(150, 150);

        LinearGradientBrush lgb =
            new LinearGradientBrush(startPoint, endPoint,     Color.FromArgb(255, 255, 0, 0), Color.FromArgb(255, 255, 255, 0));
        Graphics g = e.Graphics;
        g.FillRectangle(lgb, 0, 0, 150, 150);
       // g.DrawLine(new Pen(Color.Yellow, 1.5f), startPoint, endPoint);
    }
}

}

现在我有了这个渐变的面板

ORnzf.png

我应该用什么来获得第一张照片的渐变?

第二个问题:点击此背景后我该怎么做才能获得像素颜色?

2 个答案:

答案 0 :(得分:15)

以下是在LinearGradientBrush事件中使用多色Paint的示例:

LinearGradientBrush linearGradientBrush =
   new LinearGradientBrush(panel4.ClientRectangle, Color.Red, Color.Yellow, 45);

ColorBlend cblend = new ColorBlend(3);
cblend.Colors = new Color[3]  { Color.Red, Color.Yellow, Color.Green };
cblend.Positions = new float[3] { 0f, 0.5f, 1f };

linearGradientBrush.InterpolationColors = cblend;

e.Graphics.FillRectangle(linearGradientBrush, panel4.ClientRectangle);

enter image description here

您可以自由改变停止点的颜色数量,角度或扩展。只需确保您始终拥有相同数量的颜色和停止点,并让它们从0开始并以1结束。

构造函数中的颜色被忽略,btw ..

要获得点击的颜色,您可以对MouseClick

进行编码
Color clickedColor = Color.Empty;

private void panel_MouseClick(object sender, MouseEventArgs e)
{
    using (Bitmap bmp = new Bitmap( panel.ClientSize.Width, panel4.ClientSize.Height))
    {
        panel.DrawToBitmap(bmp,panel.ClientRectangle);
        clickedColor = bmp.GetPixel(e.X, e.Y);
    }
}

如果你希望获得多次点击,最好将Bitmap保留在类级别变量中,而不是一直重新创建它。将其设置为Panel的BackgroundImage,如Kala&# 39;答案假定也可能是一个不错的选择..

这应该回答标题中的问题。但是,您的第一张图片并未显示三种颜色的渐变。它显示了具有四种颜色的2D渐变。对于这种更昂贵的着色方法,您应该将颜色放在Bitmap中并将其设置为Panel' s BackgroundImage ..

** Update1 **这是一段创建2D渐变的代码:

Bitmap Gradient2D(Rectangle r, Color c1, Color c2, Color c3, Color c4)
{
    Bitmap bmp = new Bitmap(r.Width, r.Height);

    float delta12R = 1f * (c2.R - c1.R) / r.Height;
    float delta12G = 1f * (c2.G - c1.G) / r.Height;
    float delta12B = 1f * (c2.B - c1.B) / r.Height;
    float delta34R = 1f * (c4.R - c3.R) / r.Height;
    float delta34G = 1f * (c4.G - c3.G) / r.Height;
    float delta34B = 1f * (c4.B - c3.B) / r.Height;
    using (Graphics G = Graphics.FromImage(bmp) )
    for (int y = 0; y < r.Height; y++)
    {
        Color c12 = Color.FromArgb(255,  c1.R + (int)(y * delta12R), 
              c1.G + (int)(y * delta12G), c1.B + (int)(y * delta12B));
        Color c34 = Color.FromArgb(255, c3.R + (int)(y * delta34R), 
              c3.G + (int)(y * delta34G), c3.B + (int)(y * delta34B));
        using ( LinearGradientBrush lgBrush = new LinearGradientBrush(
              new Rectangle(0,y,r.Width,1), c12, c34, 0f) )
        {  G.FillRectangle(lgBrush, 0, y, r.Width, 1);  }
    }
    return bmp;
}

以下是您使用它的方式:

    public Form1()
    {
        InitializeComponent();
        panel.BackgroundImage = Gradient2D(panel.ClientRectangle, 
               Color.Black, Color.FromArgb(255, 0, 255, 0), Color.Red, Color.Yellow);
    }

这使用简单的LinearGradientBrushes而没有额外的颜色列表在Panel的高度上下降。

请注意,Color.Green是一种相当暗的色调,所以我使用FromRgb来获得更亮的绿色。如果您的Panel大于256像素,则可能需要通过填充较大的条带进行优化; ifs它是垂直的你可能想要改变循环以超过x而不是y ..

结果如下:

enter image description here

要点击一下,您现在只需从BackgroundImage

中读出颜色
private void panel_MouseClick(object sender, MouseEventArgs e)
{
    clickedColor = ((Bitmap)panel.BackgroundImage).GetPixel(e.X, e.Y);
}

更新2:

查看this MSDN page时,我们发现实际上有一个内置工具可以创建2D渐变。

这是PathGradientBrush

这是一个例子......:

enter image description here

..和代码:

Bitmap Gradient2D(Rectangle r, Color c1, Color c2, Color c3, Color c4)
{
    List<Color> colors = new List<Color> {  c1, c3, c4, c2 };
    Bitmap bmp = new Bitmap(r.Width, r.Height);
    using (Graphics g = Graphics.FromImage(bmp))
    for (int y = 0; y < r.Height; y++)
    {

        using (PathGradientBrush pgb = new PathGradientBrush(getCorners(r).ToArray()))
        {
            pgb.CenterColor = medianColor(colors);
            pgb.SurroundColors = colors.ToArray();
            g.FillRectangle(pgb, 0, y, r.Width, 1);
        }
    }
    return bmp;
}

这使用两个简单的辅助函数。一个返回矩形的角点:

public List<PointF> getCorners(RectangleF r)
{
    return new List<PointF>() { r.Location, new PointF(r.Right, r.Top),
        new PointF(r.Right, r.Bottom), new PointF(r.Left, r.Bottom)};
}

另一个计算List<Color>的中值颜色。这用作CenterColor ..:

public static Color medianColor(List<Color> cols)
{
    int c = cols.Count;
    return Color.FromArgb(cols.Sum(x => x.A) / c, cols.Sum(x => x.R) / c,
        cols.Sum(x => x.G) / c, cols.Sum(x => x.B) / c);
}

结果与使用LinearGradientBrushes条纹的结果非常相似。它更简单,应该更好一点;这是我明显推荐的......

请注意颜色(或角落)的更改顺序SurroundColors适用于矩形的对角..

注意:

在研究该页面时,可以发现该画笔实际上有四种不同用途。

他们在如何设置(GraphicsPathPoint[])方面有所不同,要填充的颜色集合(SurroundColorsInterpolationColors.Colors)以及如何调用它(与形状或路径)。结果也差异很大。

另请注意,只显示三个结果或四种方式,但提供了所有四种方法的代码!..

答案 1 :(得分:2)

从鼠标单击事件参数e,您可以获得具有点击的精确坐标的Point:

Point clickPoint = e.GetPosition(backgroundControlWithImg);

然后使用以下内容获取该位置的图像颜色:

System.Drawing.Image image = backgroundControl.BackgroundImage;
Bitmap _bitmap = new Bitmap(image);
Color _color = bitmap.GetPixel(Point.x, Point.y);

这样的事情。您对拾色器,WPF或?

使用了什么?