asp.net(c#)将彩色图片变灰阶图片
生活随笔
收集整理的這篇文章主要介紹了
asp.net(c#)将彩色图片变灰阶图片
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
代碼如下:
using System; using System.Collections; using System.Configuration; using System.Data; using System.Linq; using System.Web; using System.Web.Security; using System.Web.UI; using System.Web.UI.HtmlControls; using System.Web.UI.WebControls; using System.Web.UI.WebControls.WebParts; using System.Xml.Linq; using System.Drawing; using System.Drawing.Imaging; /* 何問起 hovertree.com */ namespace WebApplication2 {public partial class _Default : System.Web.UI.Page{protected void Page_Load(object sender, EventArgs e){Bitmap b = new Bitmap(Server.MapPath("01.jpg"));for (int x = 0; x < b.Width; x++){for (int y = 0; y < b.Height; y++){Color pixel = b.GetPixel(x, y);int val = (pixel.R + pixel.G + pixel.B) / 3;b.SetPixel(x, y, Color.FromArgb(val, val, val));}}b.Save(Server.MapPath("1.jpg"));}} }推薦:http://www.cnblogs.com/roucheng/p/3518068.html
總結
以上是生活随笔為你收集整理的asp.net(c#)将彩色图片变灰阶图片的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 电影院看电影宣传文案28句
- 下一篇: sio2是什么化学元素