必威体育Betway必威体育官网
当前位置:首页 > IT技术

用C 绘制实时曲线图

时间:2019-10-08 01:11:07来源:IT技术作者:seo实验室小编阅读:84次「手机版」
 

曲线图

分享一下我老师大神的人工智能教程!零基础,通俗易懂!http://blog.csdn.net/jiangjunshow

也欢迎大家转载本篇文章。分享知识,造福人民,实现我们中华民族伟大复兴!

在实际项目中我们经常需要绘制一些实时的数据图片,比如当前各公司的用水量、用电量还有播放声音视频时实时显示当前的声频等等,在我们最熟悉的任务管理器也有这么一个功能,用来表示当前cpu的使用频率,最近笔者刚刚给朋友完成了一个类似的功能图,用曲线图来实时表示一些实际数据,由于形象直观,很受客户欢迎。

不过由于某些原因,本人不能将实际项目中的代码拿出来给大家分享,只能模拟了一个简单的实现,代码没有过多优化,所以还存在很多可以优化的地方,希望有兴趣的朋友自己完善。

为了操作和应付变化,所以将绘制曲线图的功能单独封装成一个类,里面的数据完全是模拟的,在横向坐标上每个像素间隔用一个点来控制(实际中可能会加大这个距离),横向是个随机生成的数(实际开发中这应该来自我们的实时数据按比率计算得来的),显示窗体中用到了一个线程来定时绘制实时曲线。

实际代码如下:

[Csharp] view plain copy print?

  1. usingSystem;
  2. usingSystem.Collections.Generic;
  3. usingSystem.Text;
  4. usingSystem.Drawing;
  5. usingSystem.Drawing.Imaging;
  6. namespaceRealtimeCurve
  7. {
  8. ///
  9. ///说明:实时图片生成类,在本例中横向坐标上每个像素都会有一个控制点
  10. ///实际开发中可以减少控制点,比如每5个像素用一个控制点
  11. ///这样的效果或许更加逼真
  12. ///作者:周公
  13. ///日期:2008-07-21
  14. ///首发地址:<ahref="http://blog.csdn.net/zhoufoxcn/archive/2008/07/21/2682027.aspx"target="_blank"rel="nofollow">http://blog.csdn.net/zhoufoxcn/archive/2008/07/21/2682027.aspx</a>
  15. ///
  16. publicclassRealTimeImageMaker
  17. {
  18. privateintwidth;//要生成的曲线图的宽度
  19. privateintheight;//要生成的曲线图的高度
  20. privatePoint[]pointList;//用来绘制曲线图的关键点,依次将这些点连接起来即得到曲线图
  21. privateRandomrandom=newRandom();//用于生成随机数
  22. privateBitmapcurrentImage;//当前要绘制的图片
  23. privatecolorbackColor;//图片背景色
  24. privateColorforeColor;//图片前景色
  25. ///
  26. ///图片的高度
  27. ///
  28. publicintHeight
  29. {
  30. get{returnheight;}
  31. set{height=value;}
  32. }
  33. ///
  34. ///图片的宽度
  35. ///
  36. publicintWidth
  37. {
  38. get{returnwidth;}
  39. set{width=value;}
  40. }
  41. ///
  42. ///构造函数,指定生成的曲线图的宽度和高度
  43. ///
  44. ///要生成的曲线图的宽度
  45. ///要生成的曲线图的高度
  46. publicRealTimeImageMaker(intwidth,intheight):this(width,height,Color.Gray,Color.Blue)
  47. {
  48. }
  49. ///
  50. ///构造函数,指定生成的曲线图的宽度、高度及背景色和前景色
  51. ///
  52. ///要生成的曲线图的宽度
  53. ///要生成的曲线图的高度
  54. ///曲线图背景色
  55. ///曲线图前景色
  56. publicRealTimeImageMaker(intwidth,intheight,ColorbackColor,ColorforeColor)
  57. {
  58. this.width=width;
  59. this.height=height;
  60. this.backColor=backColor;
  61. this.foreColor=foreColor;
  62. pointList=newPoint[width];
  63. PointtempPoint;
  64. //初始化曲线上的所有点坐标
  65. for(inti=0;i<width;i++)
  66. {
  67. tempPoint=newPoint();
  68. //曲线的横坐标沿x轴依次递增,在横向位置上每个像素都有一个点
  69. tempPoint.X=i;
  70. //曲线上每个点的纵坐标随机生成,但保证在显示区域之内
  71. tempPoint.Y=random.Next()%height;
  72. pointList[i]=tempPoint;
  73. }
  74. }
  75. ///
  76. ///获取当前依次连接曲线上每个点绘制成的曲线
  77. ///
  78. ///
  79. publicImageGetCurrentCurve()
  80. {
  81. //currentImage=historyImage.clone(newRectangle(1,0,width-1,height),Pixelformat.Format24bppRgb);
  82. currentImage=newBitmap(width,height);
  83. Pointp;
  84. //将当前定位曲线图的坐标点前移,并且将横坐标减1,
  85. //这样做的效果相当于移除当前第一个点
  86. for(inti=0;i<width-1;i++)
  87. {
  88. p=pointList[i+1];
  89. pointList[i]=newPoint(p.X-1,p.Y);
  90. }
  91. PointtempPoint=newPoint();
  92. //新生成曲线图定位点的最后一个点的坐标
  93. tempPoint.X=width;
  94. //曲线上每个点的纵坐标随机生成,但保证在显示区域之内
  95. tempPoint.Y=random.Next(DateTime.Now.Millisecond)%height;
  96. //在最后再添加一个新坐标点
  97. pointList[width-1]=tempPoint;
  98. Graphicsg=Graphics.FromImage(currentImage);
  99. g.Clear(backColor);
  100. //绘制曲线图
  101. g.DrawLines(newPen(foreColor),pointList);
  102. g.Dispose();
  103. returncurrentImage;
  104. }
  105. }
  106. }

using System;using System.Collections.Generic;using System.Text;using System.Drawing;using System.Drawing.Imaging;namespace RealtimeCurve{ ///  /// 说明:实时图片生成类,在本例中横向坐标上每个像素都会有一个控制点 /// 实际开发中可以减少控制点,比如每5个像素用一个控制点 /// 这样的效果或许更加逼真 /// 作者:周公 /// 日期:2008-07-21 /// 首发地址:http://blog.csdn.net/zhoufoxcn/archive/2008/07/21/2682027.aspx ///  public class RealTimeImageMaker { private int width;//要生成的曲线图的宽度 private int height;//要生成的曲线图的高度 private Point[] pointList;//用来绘制曲线图的关键点,依次将这些点连接起来即得到曲线图 private Random random = new Random();//用于生成随机数 private Bitmap currentImage;//当前要绘制的图片 private Color backColor;//图片背景色 private Color foreColor;//图片前景色 ///  /// 图片的高度 ///  public int Height { get { return height; } set { height = value; } } ///  /// 图片的宽度 ///  public int Width { get { return width; } set { width = value; } } ///  /// 构造函数,指定生成的曲线图的宽度和高度 ///  /// 要生成的曲线图的宽度 /// 要生成的曲线图的高度 public RealTimeImageMaker(int width, int height):this(width,height,Color.Gray,Color.Blue) {  } ///  /// 构造函数,指定生成的曲线图的宽度、高度及背景色和前景色 ///  /// 要生成的曲线图的宽度 /// 要生成的曲线图的高度 /// 曲线图背景色 /// 曲线图前景色 public RealTimeImageMaker(int width, int height, Color backColor, Color foreColor) { this.width = width; this.height = height; this.backColor = backColor; this.foreColor = foreColor; pointList = new Point[width]; Point tempPoint; //初始化曲线上的所有点坐标 for (int i = 0; i < width; i++) { tempPoint = new Point(); //曲线的横坐标沿x轴依次递增,在横向位置上每个像素都有一个点 tempPoint.X = i; //曲线上每个点的纵坐标随机生成,但保证在显示区域之内 tempPoint.Y = random.Next() % height; pointList[i] = tempPoint; } } ///  /// 获取当前依次连接曲线上每个点绘制成的曲线 ///  ///  public Image GetCurrentCurve() { //currentImage = historyImage.Clone(new Rectangle(1, 0, width - 1, height), PixelFormat.Format24bppRgb); currentImage = new Bitmap(width, height); Point p; //将当前定位曲线图的坐标点前移,并且将横坐标减1, //这样做的效果相当于移除当前第一个点 for (int i = 0; i < width-1; i++) { p = pointList[i + 1]; pointList[i] = new Point(p.X-1,p.Y); } Point tempPoint = new Point(); //新生成曲线图定位点的最后一个点的坐标 tempPoint.X = width; //曲线上每个点的纵坐标随机生成,但保证在显示区域之内 tempPoint.Y = random.Next(DateTime.Now.Millisecond) % height; //在最后再添加一个新坐标点 pointList[width-1]=tempPoint; Graphics g = Graphics.FromImage(currentImage); g.Clear(backColor); //绘制曲线图 g.DrawLines(new Pen(foreColor), pointList); g.Dispose(); return currentImage; } }}
窗体关键代码:

[Csharp] view plain copy print?

  1. usingSystem;
  2. usingSystem.Collections.Generic;
  3. usingSystem.componentModel;
  4. usingSystem.Data;
  5. usingSystem.Drawing;
  6. usingSystem.Text;
  7. usingSystem.windows.Forms;
  8. usingSystem.Threading;
  9. namespaceRealtimeCurve
  10. {
  11. ///
  12. ///说明:显示实时曲线图的窗体
  13. ///作者:周公
  14. ///日期:2008-07-21
  15. ///首发地址:<ahref="http://blog.csdn.net/zhoufoxcn/archive/2008/07/21/2682027.aspx"target="_blank"rel="nofollow">http://blog.csdn.net/zhoufoxcn/archive/2008/07/21/2682027.aspx</a>
  16. ///
  17. publicpartialclassFormRealTime:Form
  18. {
  19. Threadthread;
  20. RealTimeImageMakerrti;
  21. ColorbackColor=Color.Black;//指定绘制曲线图的背景色
  22. publicFormRealTime()
  23. {
  24. InitializeComponent();
  25. rti=newRealTimeImageMaker(Width,Height,backColor,Color.Green);
  26. thread=newThread(newThreadStart(Run));
  27. thread.Start();
  28. }
  29. privatevoidRun()
  30. {
  31. while(true)
  32. {
  33. Imageimage=rti.GetCurrentCurve();
  34. Graphicsg=CreateGraphics();
  35. //用指定背景色清除当前窗体上的图象
  36. g.Clear(backColor);
  37. g.DrawImage(image,0,0);
  38. g.Dispose();
  39. //每秒钟刷新一次
  40. Thread.Sleep(1000);
  41. }
  42. }
  43. privatevoidFormRealTime_FormClosing(objectsender,FormClosingEventArgse)
  44. {
  45. //在窗体即将关闭之前中止线程
  46. thread.Abort();
  47. }
  48. }
  49. }

using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Text;using System.Windows.Forms;using System.Threading;namespace RealtimeCurve{ ///  /// 说明:显示实时曲线图的窗体 /// 作者:周公 /// 日期:2008-07-21 /// 首发地址:http://blog.csdn.net/zhoufoxcn/archive/2008/07/21/2682027.aspx ///  public partial class FormRealTime : Form { Thread thread; RealTimeImageMaker rti; Color backColor = Color.Black;//指定绘制曲线图的背景色 public FormRealTime() { InitializeComponent(); rti = new RealTimeImageMaker(Width, Height, backColor, Color.Green); thread = new Thread(new ThreadStart(Run)); thread.Start(); } private void Run() { while (true) { Image image = rti.GetCurrentCurve(); Graphics g = CreateGraphics(); //用指定背景色清除当前窗体上的图象 g.Clear(backColor); g.DrawImage(image, 0, 0); g.Dispose(); //每秒钟刷新一次 Thread.Sleep(1000); } } private void FormRealTime_FormClosing(object sender, FormClosingEventArgs e) { //在窗体即将关闭之前中止线程 thread.Abort(); } }}

程序最终的运行结果截图:

全部程序代码请到http://download.csdn.net/zhoufoxcn下载。

更多资讯,请关注本人微信订阅号

给我老师的人工智能教程打call!http://blog.csdn.net/jiangjunshow

这里写图片描述

相关阅读

SQL SERVER 分页(2)——利用OFFSET/FETCH NEXT实现分页

在上一篇博客中用ROW_NUMBER实现分页,这次我们利用OFFSET/FETCH NEXT来实现分页,这个是在SQL2012中加入的分页方法,测试数据:--测试数

oracle入门教程

推荐一个Oracle入门学习教程 点击下面链接进入自学网站    学习网站:http://www.51zxw.net/study.asp?vip=16229363 点击图片箭

C语言常见面试题

面试题>>C 语言 1.请写出 : bool, float, *p 与零值比较的 if 语句bool flag : if(flag) if(!flag) float x : const float EXP

Ceph存储使用RBD(Rados块设备)

使用RBD(Rados块设备)查看存储池[root@node1~]# ceph osd lspools可以查看到0号镜像池,名字为rbd创建名为demo-img的镜像大小为1

StretchBlt函数和BitBlt函数的用法

StretchBlt和BitBlt都用在双缓冲视图中,用来显示一幅图像一、StretchBlt函数从源矩形中复制一个位图到目标矩形,必要时按目标设备设

分享到:

栏目导航

推荐阅读

热门阅读