如何在像素级操纵图像并从图像中提取信息?

时间:2012-04-18 05:34:20

标签: android

如何在像素级别操作图像。我想通过重新排列像素来从图像中提取信息。任何帮助解决这个问题的人都表示赞赏。

2 个答案:

答案 0 :(得分:2)

要从图像中提取信息,您需要以下代码

import android.graphics.Color;

    int[] pixels = new int[myBitmap.getHeight()*myBitmap.getWidth()];
    myBitmap.getPixels(pixels, 0, myBitmap.getWidth(), 0, 0, myBitmap.getWidth(), myBitmap.getHeight());
    for (int i=0; i<myBitmap.getWidth()*5; i++)
        pixels[i] = Color.BLUE;
    myBitmap.setPixels(pixels, 0, myBitmap.getWidth(), 0, 0, myBitmap.getWidth(), myBitmap.getHeight());

答案 1 :(得分:0)

将图片加载到位图。然后有像

这样的功能
Bitmap b = ...
int color = b.getPixel(x,y);
b.setPixel(x, y, color);