本章主要介绍使用C#进行图形图像编程基础,其中包括GDI+绘图基础、C#图像处理基础以及简单的图像处理技术。
}
运行结果如图7.1所示。 2.画一个弧
【例7.2】画一个弧形。 弧形函数格式如下:
public void DrawArc(Pen pen,Rectangle rect,Float startArgle,Float sweepAngle);
直接在Form1类中重载OnPaint函数
protected override void OnPaint(PaintEventArgs e) {
Graphics g = e.Graphics ; Pen pn = new Pen( Color.Blue);
Rectangle rect = new Rectangle(50, 50, 200,100); g.DrawArc(pn,rect,12,84); }
运行结果如图7.2所示。
图7.2 画一个弧
3.画线
【例7.3】画一条线。
protected override void OnPaint(PaintEventArgs e) {
Graphics g = e.Graphics ; Pen pn = new Pen(Color.Blue);