LinearGradientBrush是C#中的一个画刷对象,用于创建线性渐变效果。
使用LinearGradientBrush,可以在图形绘制中创建平滑的线性渐变。可以指定渐变的起始点和结束点,以及渐变的颜色和颜色位置。
下面是LinearGradientBrush的基本用法:
LinearGradientBrush brush = new LinearGradientBrush(startPoint, endPoint, startColor, endColor);
startPoint和endPoint分别是渐变的起始点和结束点的坐标,startColor和endColor是起始点和结束点的颜色。
brush.StartPoint = startPoint;
brush.EndPoint = endPoint;
可以通过设置StartPoint和EndPoint的坐标来改变渐变的方向。
GradientStopCollection stops = new GradientStopCollection();
stops.Add(new GradientStop(color1, offset1));
stops.Add(new GradientStop(color2, offset2));
brush.GradientStops = stops;
GradientStopCollection是一个包含多个GradientStop对象的集合,每个GradientStop对象表示一个颜色和颜色位置。offset表示颜色在渐变中的位置,范围是0到1。
using (Graphics g = Graphics.FromImage(bitmap))
{
g.FillRectangle(brush, rectangle);
}
可以使用Graphics对象的FillRectangle方法来绘制一个填充有渐变效果的矩形。
这样就可以使用LinearGradientBrush创建线性渐变效果了。