Android位图到每个像素的字节数组转换

时间:2019-02-09 12:17:28

标签: android bitmap pdf-generation jpeg

我对解码到ByteOutputStream的位图感到困惑

我正在使用android Library apw-android pdf writer,它使用一种将位图转换为byte []数组的方法。

我正在尝试使用toByteArray()方法实现此目的,但输出pdf却显示黑色图像。

图书馆方法

 private byte[] getBitmapData(Bitmap bitmap) {
        byte[] data = null;
        if (bitmap != null) {
            data = new byte[mDataSize];
            int intColor;
            int offset = 0;
            for (int y = 0; y < mHeight; y++) {
                for (int x = 0; x < mWidth; x++) {
                    intColor = bitmap.getPixel(x, y);
                    data[offset++] = (byte) ((intColor >> 16) & 0xFF);
                    data[offset++] = (byte) ((intColor >> 8) & 0xFF);
                    data[offset++] = (byte) ((intColor >> 0) & 0xFF);
                }
            }
        }
        return data;
    }

我的新方法

private byte[] getBitmapData(Bitmap bitmap) {
    if (bitmap != null) {
        ByteArrayOutputStream stream = new ByteArrayOutputStream();
        bitmap.compress(Bitmap.CompressFormat.JPEG, 80, stream);
        bitmap.recycle();
        return stream.toByteArray();
    }
    return null;
}

我没有按位逻辑和对话的经验。 我无法完全理解库方法。

我这里缺少什么吗? 会有所帮助的

0 个答案:

没有答案