程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> C# >> C#入門知識 >> C#圖象處置之霓虹後果完成辦法

C#圖象處置之霓虹後果完成辦法

編輯:C#入門知識

C#圖象處置之霓虹後果完成辦法。本站提示廣大學習愛好者:(C#圖象處置之霓虹後果完成辦法)文章只能為提供參考,不一定能成為您想要的結果。以下是C#圖象處置之霓虹後果完成辦法正文


本文實例講述了C#圖象處置之霓虹後果完成辦法。分享給年夜家供年夜家參考。詳細以下:

//界說霓虹處置函數
public Bitmap PNihong(Bitmap a)
{
 try
 {   
  int w = a.Width;
  int h = a.Height;
  Bitmap dstBitmap = new Bitmap(w, h, System.Drawing.Imaging.PixelFormat.Format24bppRgb);
  System.Drawing.Imaging.BitmapData srcData = a.LockBits(new Rectangle
   (0, 0, w, h), System.Drawing.Imaging.ImageLockMode.ReadOnly, System.Drawing.Imaging.PixelFormat.Format24bppRgb);
  System.Drawing.Imaging.BitmapData dstData = dstBitmap.LockBits(new Rectangle
   (0, 0, w, h), System.Drawing.Imaging.ImageLockMode.WriteOnly, System.Drawing.Imaging.PixelFormat.Format24bppRgb);
  unsafe
  {
   byte* pIn = (byte*)srcData.Scan0.ToPointer();
   byte* pOut = (byte*)dstData.Scan0.ToPointer();
   byte* p;
   int stride = srcData.Stride;
   for (int y = 0; y < h; y++)
   {
   for (int x = 0; x < w; x++)
   {
    //邊沿八個點像素不變
    if (x == 0 || x == w - 1 || y == 0 || y == h - 1)
    {
    pOut[0] = pIn[0];
    pOut[1] = pIn[1];
    pOut[2] = pIn[2];
    }
    else
    {
    int r0, r1, r2;
    int g1, g2, g0;
    int b1, b2, b0;
    double vR, vG, vB;
    //左上
    p = pIn - stride - 3;
    //右
    p = pIn + 3;
    r1 = p[2];
    g1 = p[1];
    b1 = p[0];
    //正下
    p = pIn + stride;
    r2 = p[2];
    g2 = p[1];
    b2 = p[0];
    //中間點
    p = pIn;
    r0 = p[2];
    g0 = p[1];
    b0 = p[0];
    //應用模板
    vR = Math.Sqrt((r0 - r1) * (r0 - r1) + (r0 - r2) * (r0 - r2));
    vG = Math.Sqrt((g0 - g1) * (g0 - g1) + (g0 - g2) * (g0 - g2));
    vB = Math.Sqrt((b0 - b1) * (b0 - b1) + (b0 - b2) * (b0 - b2));
    if (vR > 0)
    {
     vR = Math.Min(255, vR);
    }
    else
    {
     vR = Math.Max(0, vR);
    }
    if (vG > 0)
    {
     vG = Math.Min(255, vG);
    }
    else
    {
     vG = Math.Max(0, vG);
    }
    if (vB > 0)
    {
     vB = Math.Min(255, vB);
    }
    else
    {
     vB = Math.Max(0, vB);
    }
    pOut[0] = (byte)vB;
    pOut[1] = (byte)vG;
    pOut[2] = (byte)vR;
    }
    pIn += 3;
    pOut += 3;
   }
   pIn += srcData.Stride - w * 3;
   pOut += srcData.Stride - w * 3;
   }
  }
  a.UnlockBits(srcData);
  dstBitmap.UnlockBits(dstData);
  return dstBitmap;
 }
 catch (Exception e)
 {
  MessageBox.Show(e.Message.ToString());
  return null;
 }
}

原圖:

後果圖:

願望本文所述對年夜家的C#法式設計有所贊助。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved