手机版

C_GDI+编程教程(15)

发布时间:2021-06-07   来源:未知    
字号:

本章主要介绍使用C#进行图形图像编程基础,其中包括GDI+绘图基础、C#图像处理基础以及简单的图像处理技术。

LinearGradientBrush myBrush = new

LinearGradientBrush(this.ClientRectangle, Color.White, Color.Blue, LinearGradientMode.Vertical);

g.FillRectangle(myBrush, this.ClientRectangle); }

运行结果如图7.10所示。

图7.10 LinearGradientBrush的应用

(2)PathGradientBrush类

PathGradientBrush类的构造函数如下:

public PathGradientBrush (GraphicsPath path);

参数说明:

path:GraphicsPath,定义此PathGradientBrush填充的区域。 例子代码如下:

private void Form1_Paint(object sender, PaintEventArgs e) {

Graphics g = e.Graphics;

Point centerPoint = new Point(150, 100); int R = 60;

GraphicsPath path = new GraphicsPath();

path.AddEllipse(centerPoint.X-R,centerPoint.Y-R,2*R,2*R); PathGradientBrush brush = new PathGradientBrush(path);

C_GDI+编程教程(15).doc 将本文的Word文档下载到电脑,方便复制、编辑、收藏和打印
×
二维码
× 游客快捷下载通道(下载后可以自由复制和排版)
VIP包月下载
特价:29 元/月 原价:99元
低至 0.3 元/份 每月下载150
全站内容免费自由复制
VIP包月下载
特价:29 元/月 原价:99元
低至 0.3 元/份 每月下载150
全站内容免费自由复制
注:下载文档有可能出现无法下载或内容有问题,请联系客服协助您处理。
× 常见问题(客服时间:周一到周五 9:30-18:00)