C#圖像處理之木刻效果實現(xiàn)方法
更新時間:2015年04月24日 11:43:07 作者:滄海一粟……
這篇文章主要介紹了C#圖像處理之木刻效果實現(xiàn)方法,可實現(xiàn)類似木刻效果的黑白照效果,需要的朋友可以參考下
本文實例講述了C#圖像處理之木刻效果實現(xiàn)方法。分享給大家供大家參考。具體如下:
//木刻效果
public Bitmap PFilterMuKe(Bitmap src)
{
try
{
Bitmap a = new Bitmap(src);
Rectangle rect = new Rectangle(0, 0, a.Width, a.Height);
System.Drawing.Imaging.BitmapData bmpData = a.LockBits(rect, System.Drawing.Imaging.ImageLockMode.ReadWrite, System.Drawing.Imaging.PixelFormat.Format24bppRgb);
int stride = bmpData.Stride;
unsafe
{
byte* pIn = (byte*)bmpData.Scan0.ToPointer();
byte* P;
int R, G, B;
int temp = 0;
for (int y = 0; y < a.Height; y++)
{
for (int x = 0; x < a.Width; x++)
{
P = pIn;
B = P[0];
G = P[1];
R = P[2];
temp = (byte)((B + G + R) / 3);
if (temp >= 122.5)
{
P[2] = 0;
P[1] = 0;
P[0] = 0;
}
else
{
P[2] = (byte)255;
P[1] = (byte)255;
P[0] = (byte)255;
}
pIn += 3;
}
pIn += stride - a.Width * 3;
}
}
a.UnlockBits(bmpData);
return a;
}
catch (Exception e)
{
MessageBox.Show(e.Message.ToString());
return null;
}
}
原圖:

效果圖:

希望本文所述對大家的C#程序設計有所幫助。
相關(guān)文章
C#實現(xiàn)讀取Excel文件并將數(shù)據(jù)寫入數(shù)據(jù)庫和DataTable
Excel文件是存儲表格數(shù)據(jù)的普遍格式,因此能夠高效地讀取和提取信息對于我們來說至關(guān)重要,下面我們就來看看C#如何實現(xiàn)讀取Excel文件并將數(shù)據(jù)寫入數(shù)據(jù)庫和DataTable吧2024-03-03
Unity Shader實現(xiàn)動態(tài)過場切換圖片效果
這篇文章主要為大家詳細介紹了Unity Shader實現(xiàn)動態(tài)過場切換圖片效果,文中示例代碼介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們可以參考一下2021-07-07

