Android中將彩色圖轉換為灰階圖的方法

來源:互聯網
上載者:User

最近突發奇想想將彩色圖片轉換成灰階圖片,查看了資料,終於實現了預想的效果,現將代碼貼出來,與大家分享:

public Bitmap ConvertGrayImg(Bitmap img1)    
    {    
        int width=img1.getWidth();
        int height=img1.getHeight();    
        int[] pix = new int[width * height];    
        img1.getPixels(pix, 0, width, 0, 0, width, height);     //第三個參數width為步長,它必須為位元影像的寬度
            
        int alpha=0xFF<<24;    
        for (int i = 0; i < height; i++) {      
            for (int j = 0; j < width; j++) {      
                int color = pix[width * i + j]; 
                //記住這裡的Alpha值應設為00,不要設為ff,不然就不是灰階圖了
                int red = ((color & 0x00FF0000) >> 16);      
                int green = ((color & 0x0000FF00) >>;      
                int blue = color & 0x000000FF;      
              //這裡有些人會將三個顏色分量的值相加然後除以3,但是這會存在一些極端的情況,所以以0.3 、 0.59 、 0.11的比例來計算
              //是比較好的
                color = (int)( (float)red*0.3 + (float)green*0.59 + (float)blue*0.11);
                color = alpha | (color << 16) | (color << | color;      
                pix[width * i + j] = color;    
            }    
        }    
        Bitmap result=Bitmap.createBitmap(width, height, Config.RGB_565);    
        result.setPixels(pix, 0, width, 0, 0,width, height);    
        return result;    
    }   

作者“zhangyulong882”
 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.