首页 > 代码库 > 使用asp.net改变图片颜色
使用asp.net改变图片颜色
最近奇葩经理提出了奇葩的需求,要能在网站上改变图片的颜色,比如灰色的变成彩色,彩色的变成灰色,尼玛楼主的感受你们不懂!于是有了下面的代码。。。
用法:调用update_pixelColor方法并传参数即可
C#代码
- #region 改变图片颜色
- /// <summary>
- /// 改变图片的颜色
- /// </summary>
- /// <param name="filePath">图片的完整路径</param>
- /// <param name="colorIndex">改变的颜色,true为灰色,false为彩色</param>
- public void update_pixelColor(string filePath, bool colorIndex)
- {
- Bitmap bmp = new Bitmap(Bitmap.FromFile(filePath));
- int value = 0;
- for (int i = 0; i < bmp.Height; i++)
- {
- for (int j = 0; j < bmp.Width; j++)
- {
- if (colorIndex)
- value = this.GetGrayNumColor(bmp.GetPixel(j, i));
- else
- value = this.GetHongNumColor(bmp.GetPixel(j, i));
- bmp.SetPixel(j, i, Color.FromArgb(value, value, value));
- }
- }
- bmp.Save(filePath);
- }
- /// <summary>
- /// 获取彩色单点像素
- /// </summary>
- /// <param name="posClr">单点像素</param>
- /// <returns>int</returns>
- private int GetHongNumColor(Color posClr)
- {
- return (posClr.R * 19595 + posClr.G * 38469 + posClr.B * 7472) >> 16;
- }
- /// <summary>
- /// 获取灰色单点像素
- /// </summary>
- /// <param name="posClr">单点像素</param>
- /// <returns>Color</returns>
- private int GetGrayNumColor(Color posClr)
- {
- //要改变ARGB
- return (posClr.R * 19595 + posClr.G * 38469 + posClr.B * 7472) >> 16;
- }
- #endregion 改变图片颜色
这个转换的比较慢 看到编程人生上有关于这方面的总结,哪天来研究一下
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。