c# winform 把彩色圖片轉換為灰色的圖片,變灰,灰階圖片,速度很快,safe,unsafe

來源:互聯網
上載者:User

標籤:winform   style   http   java   color   os   

把彩色圖片轉換為灰色的圖片,直接用.net介面遍曆每個像素點轉換的效率非常低,800K的圖片65萬像素我的電腦要用5分鐘,而用了unsafe,速度提高了幾千倍,同樣的圖片只用了0.幾秒 

附一個常用的遍曆像素點轉換的代碼 

建構函式 

C#代碼  
  1. public Tphc()  
  2. {  
  3.     InitializeComponent();  
  4.     this.pictureBox1.ImageLocation = "F:\\黑色頭髮.jpg";  
  5. }  



按鈕單擊事件 

C#代碼  
  1. private void button3_Click(object sender, EventArgs e)  
  2. {  
  3.     int Height = this.pictureBox1.Image.Height;  
  4.     int Width = this.pictureBox1.Image.Width;  
  5.     Bitmap bitmap = new Bitmap(Width, Height);  
  6.     Bitmap MyBitmap = (Bitmap)this.pictureBox1.Image;  
  7.     Color pixel;  
  8.     for (int x = 0; x < Width; x++)  
  9.         for (int y = 0; y < Height; y++)  
  10.         {  
  11.             pixel = MyBitmap.GetPixel(x, y);  
  12.             int r, g, b, Result = 0;  
  13.             r = pixel.R;  
  14.             g = pixel.G;  
  15.             b = pixel.B;  
  16.             //執行個體程式以加權平均值法產生黑白映像  
  17.             int iType = 2;  
  18.             switch (iType)  
  19.             {  
  20.                 case 0://平均值法  
  21.                     Result = ((r + g + b) / 3);  
  22.                     break;  
  23.                 case 1://最大值法  
  24.                     Result = r > g ? r : g;  
  25.                     Result = Result > b ? Result : b;  
  26.                     break;  
  27.                 case 2://加權平均值法  
  28.                     Result = ((int)(0.7 * r) + (int)(0.2 * g) + (int)(0.1 * b));  
  29.                     break;  
  30.             }  
  31.             bitmap.SetPixel(x, y, Color.FromArgb(Result, Result, Result));  
  32.         }  
  33.     this.pictureBox1.Image = bitmap;  
  34. }  


相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.