圖像濾鏡藝術---暗調濾鏡

原文: 圖像濾鏡藝術---暗調濾鏡

本文介紹暗調濾鏡的實現過程,這個濾鏡主要是呈現一種暗調,對比度明顯的效果,原理很簡單,公式以下: php

newR = R*R/255;
newG = G*G/255;
newB = B*B/255;
實現代碼以下:
 private Bitmap FilterProcess(Bitmap a)
        {
            Bitmap srcBitmap = new Bitmap(a);
            int w = srcBitmap.Width;
            int h = srcBitmap.Height;
            System.Drawing.Imaging.BitmapData srcData = srcBitmap.LockBits(new Rectangle(0, 0, w, h), System.Drawing.Imaging.ImageLockMode.ReadWrite, System.Drawing.Imaging.PixelFormat.Format32bppArgb);
            byte* pSrc = (byte*)srcData.Scan0;
            int offset = srcData.Stride - w * 4;
            int r, g, b;
            for (int j = 0; j < h; j++)
            {
                for (int i = 0; i < w; i++)
                {
                    b = pSrc[0];
                    g = pSrc[1];
                    r = pSrc[2];
                    pSrc[2] = (byte)(r * r / 255);
                    pSrc[1] = (byte)(g * g / 255);
                    pSrc[0] = (byte)(b * b / 255);
                    pSrc += 4;
                }
                pSrc += offset;
            }
            srcBitmap.UnlockBits(srcData);
            return srcBitmap;
        }
效果以下:

原圖ide

暗調效果圖spa

最後,放上一個完整的C#/C程序DEMO下載連接:http://www.zealpixel.com/forum.php?mod=viewthread&tid=79&extra=page%3D1.net

相關文章
相關標籤/搜索