扫二维码与项目经理沟通
我们在微信上24小时期待你的声音
解答本文疑问/技术咨询/运营咨询/技术建议/互联网交流
今天就跟大家聊聊有关使用C# 怎么实现一个颜色梯度渐变功能,可能很多人都不太了解,为了让大家更加了解,小编给大家总结了以下内容,希望大家根据这篇文章可以有所收获。
创新互联建站从2013年开始,是专业互联网技术服务公司,拥有项目网站设计制作、做网站网站策划,项目实施与项目整合能力。我们以让每一个梦想脱颖而出为使命,1280元井研做网站,已为上家服务,为井研各地企业和个人服务,联系电话:18982081108为了表示不同的浓度值,对颜色条应用颜色梯度变化,基本方法是对ARGB分量乘以一个渐变系数。
public void DrawRect(gasConcentration[] data) { Graphics graphic = pictureBox1.CreateGraphics(); Graphics graphic2 = pictureBox2.CreateGraphics(); int iCall2 = pictureBox2.Width/10; data = new gasConcentration[40]; int iLen = pictureBox1.Width = 540; int iHigh = pictureBox1.Height; //初始化十种颜色 Color[] color = new Color[10] { Color.FromArgb(240, 0, 0), Color.Green, Color.Yellow, Color.Blue, Color.SteelBlue, Color.SeaGreen, Color.Chartreuse, Color.SaddleBrown, Color.Violet, Color.BurlyWood}; //十个颜色,每个颜色三个深度 for (int i = 0; i < 40; i++) { data[i].gasType = i/4 + 1; data[i].gasConc = i%4; } Color c3, c4; if (data.Length > 0) { int iCall = iLen / data.Length; pictureBox2.Width = iCall * data.Length; pictureBox1.Width = iCall * data.Length; iCall2 = iCall * 4; //画对比框条 for (int i = 0; i < 10; i++) { Brush brush2 = new LinearGradientBrush(new Point(0, iHigh), new Point(iCall2, iHigh), color[i], color[i]); graphic2.FillRectangle(brush2, 0 + iCall2 * i, 0, iCall2, iHigh); brush2.Dispose(); } //画颜色条梯度分量 for (int i = 0; i < data.Length; i++) { //将颜色分为三个深度 if (data[i].gasConc != 0) c3 = c4 = Color.FromArgb((byte)(255 * (float)(1 - (data[i].gasConc * 0.01))), (byte)(color[data[i].gasType-1].R * (float)(1 - (data[i].gasConc * 0.2))), (byte)(color[data[i].gasType-1].G * (float)(1 - (data[i].gasConc * 0.2))), (byte)(color[data[i].gasType-1].B * (float)(1 - (data[i].gasConc * 0.2)))); else c3 = c4 = Color.Black; Brush brush2 = new LinearGradientBrush(new Point(0, iHigh), new Point(iCall, iHigh), c3, c4); graphic.FillRectangle(brush2, 0 + iCall * i , 0, iCall, iHigh); brush2.Dispose(); } } else { c4 = color[0]; Brush brush2 = new LinearGradientBrush(new Point(0, iHigh), new Point(iLen, iHigh), c4, c4); graphic.FillRectangle(brush2, 0, 0, iLen, iHigh); brush2.Dispose(); } }
public struct gasConcentration { int iGasType;//气体名称 int iGasConc;//气体浓度 // 0=no, 1=low, 2=med, 3=high public int gasType { get { return iGasType; } set { iGasType = value; } } public int gasConc { get { return iGasConc; } set { iGasConc = value; } } }
补充:C# 简单的颜色渐变算法
今天要用到一个颜色渐变的算法,网上看了很多,觉得都太繁琐,索性自己写一个。话不多说,直接上代码!
**这是用来获取某一颜色段的分度集合** ////// 获得某一颜色区间的颜色集合 /// /// 起始颜色 /// 终止颜色 /// 分度数 ///返回颜色集合 public static ListGetSingleColorList(Color srcColor, Color desColor, int count) { List colorFactorList = new List (); int redSpan = desColor.R - srcColor.R; int greenSpan = desColor.G - srcColor.G; int blueSpan = desColor.B - srcColor.B; for (int i = 0; i < count; i++) { Color color = Color.FromArgb( srcColor.R + (int)((double)i / count * redSpan), srcColor.G + (int)((double)i / count * greenSpan), srcColor.B + (int)((double)i / count * blueSpan) ); colorFactorList.Add(color); } return colorFactorList; }
**这里就是将红到紫之间的颜色分为5个区间,利用上面的算法拼接5个区间的分度值,就得到全彩颜色集合** ////// 获取从红到紫的颜色段的颜色集合 /// /// 分度数 /// 是否从红到紫色渐变 ///返回颜色集合 public static ListGetFullColorList(int totalCount, bool redToPurple = true) { List colorList = new List (); if (totalCount > 0) { if (redToPurple) { colorList.AddRange(GetSingleColorList(Color.Red, Color.Yellow, totalCount / 5 + (totalCount % 5 > 0 ? 1 : 0))); colorList.AddRange(GetSingleColorList(Color.Yellow, Color.Lime, totalCount / 5 + (totalCount % 5 > 1 ? 1 : 0))); colorList.AddRange(GetSingleColorList(Color.Lime, Color.Cyan, totalCount / 5 + (totalCount % 5 > 2 ? 1 : 0))); colorList.AddRange(GetSingleColorList(Color.Cyan, Color.Blue, totalCount / 5 + (totalCount % 5 > 3 ? 1 : 0))); colorList.AddRange(GetSingleColorList(Color.Blue, Color.Magenta, totalCount / 5 + (totalCount % 5 > 4 ? 1 : 0))); } else { colorList.AddRange(GetSingleColorList(Color.Magenta, Color.Blue, totalCount / 5 + (totalCount % 5 > 0 ? 1 : 0))); colorList.AddRange(GetSingleColorList(Color.Blue, Color.Cyan, totalCount / 5 + (totalCount % 5 > 1 ? 1 : 0))); colorList.AddRange(GetSingleColorList(Color.Cyan, Color.Lime, totalCount / 5 + (totalCount % 5 > 2 ? 1 : 0))); colorList.AddRange(GetSingleColorList(Color.Lime, Color.Yellow, totalCount / 5 + (totalCount % 5 > 3 ? 1 : 0))); colorList.AddRange(GetSingleColorList(Color.Yellow, Color.Red, totalCount / 5 + (totalCount % 5 > 4 ? 1 : 0))); } } return colorList; }
看完上述内容,你们对使用C# 怎么实现一个颜色梯度渐变功能有进一步的了解吗?如果还想了解更多知识或者相关内容,请关注创新互联行业资讯频道,感谢大家的支持。
我们在微信上24小时期待你的声音
解答本文疑问/技术咨询/运营咨询/技术建议/互联网交流