如何在像素级别操作图像。我想通过重新排列像素来从图像中提取信息。任何帮助解决这个问题的人都表示赞赏。
答案 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);