本章主要介绍使用C#进行图形图像编程基础,其中包括GDI+绘图基础、C#图像处理基础以及简单的图像处理技术。
g.FillRectangle(new SolidBrush(Color.White), ClientRectangle); GraphicsPath path = new GraphicsPath(new Point[] { new Point(40, 140), new Point(275, 200), new Point(105, 225), new Point(190, 300), new Point(50, 350), new Point(20, 180), }, new byte[] {
(byte)PathPointType.Start, (byte)PathPointType.Bezier, (byte)PathPointType.Bezier, (byte)PathPointType.Bezier, (byte)PathPointType.Line, (byte)PathPointType.Line, });
PathGradientBrush pgb = new PathGradientBrush(path); pgb.SurroundColors = new Color[]
{
Color.Green,Color.Yellow,Color.Red, Color.Blue, Color.Orange, Color.White, };
g.FillPath(pgb, path); }
运行结果如图7.6所示。
图7.6 填充路径