2

我正在尝试将标准 .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。

http://pastebin.com/GxF4j0ef

这是 testSmall.jpg。如您所见,它非常小。仅测量 16x16。

https://www.dropbox.com/s/8hbbopoaozuu9ya/testSmall.jpg

4

1 回答 1

2

事实证明,Android 操作系统正在缩放图像,因为我将它放在了可绘制文件夹中。事实证明,如果您不想缩放图像,则应将其放在名为 drawable-nodpi 的文件夹中。下面的链接帮助我解决了这个问题。

位图 getWidth 返回错误值

于 2013-07-23T22:35:45.457 回答