从位图android获取像素颜色

时间:2015-01-20 14:15:06

标签: android android-bitmap

我想检查位图部分中像素的颜色。我需要确定黑色像素的起始位置。这是我的实施。

Bitmap bmp = SavePixels(0, 0, screenWidth, screenHeight, gl);
for(int i = 0; i < 100; i++){
    for(int x = 0; x < 50; x++){
        //Log.i(EJ.TAG, i+","+x);
        int pixel = bmp.getPixel(i,x);
        if(pixel == Color.BLACK){
            cordinate = i;
            Log.i(EJ.TAG, i+","+x);
            break;
        }
    }
}

不幸的是,getPixel方法总是返回0

1 个答案:

答案 0 :(得分:0)

这应该找到包含黑色像素的第一列(左起):

    Bitmap bmp = SavePixels(0, 0, screenWidth, screenHeight, gl);
    boolean found = false;
    for(int x = 0; x < 50 && !found; x++){
        for(int y = 0; y < 100 && !found; y++){
            int pixel = bmp.getPixel(x, y);
            if(pixel == Color.BLACK){
                cordinate = x;
                found=true;
            }
        }
    }