我正在尝试将标准 .jpeg 图像传输到 Color 值数组中,这些值通过 Bitmap 的 getPixels 方法存储为 int 值。我的代码将加载到图像中并将其数据发送到一维 int 数组,但是当我将它们与原始图像进行比较时,其中一些值没有任何意义。我知道图像正在正确读取,因为我的程序将其打印到屏幕上。有谁知道为什么我的输出包含如此奇怪的值?
/* Test */
ImageView image = (ImageView) findViewById(R.id.imageView1);
Bitmap bMap = BitmapFactory.decodeResource(getResources(), R.drawable.testsmall);
image.setImageBitmap(bMap);
int[] pixels = new int[bMap.getHeight() * bMap.getWidth()];
bMap.getPixels(pixels, 0, bMap.getWidth(), 0, 0, bMap.getWidth(), bMap.getHeight());
int[][] colors2D = new int[bMap.getWidth()][bMap.getHeight()];
Log.i("State", "Start");
for (int x = 0; x < bMap.getWidth(); x++)
{
for (int y = 0; y < bMap.getHeight(); y++)
{
colors2D[x][y] = pixels[x + y * bMap.getWidth()];
Log.i("Inside", "X: " + x + ", Y: " + y + ", Pixel: " + pixels[x + y * bMap.getWidth()]);
}
Log.i("Outside", "New Line");
}
Log.i("State", "End");
/* End Test */
额外的信息:
以下包含程序这一部分的 LogCat 输出。奇怪的价值观就在这里。Android 的 Color 类将 White 定义为 -1,Black 定义为 -16777216。
这是 testSmall.jpg。如您所见,它非常小。仅测量 16x16。