我的目标是将 GL_ALPHA 纹理上传到 GPU 并与 OpenGL 一起使用。为此,我需要一个 ALPHA_8 格式的位图。
目前,我正在使用 BitmapFactory 加载 8 位(带灰度调色板)PNG,但 getConfig() 说它是 ARGB_8888 格式。
我最终使用了PNGJ库,如下:
import ar.com.hjg.pngj.IImageLine;
import ar.com.hjg.pngj.ImageLineHelper;
import ar.com.hjg.pngj.PngReader;
public static Bitmap loadAlpha8Bitmap(Context context, String fileName) {
Bitmap result = null;
try {
PngReader reader = new PngReader(context.getAssets().open(fileName));
if (reader.imgInfo.channels == 3 && reader.imgInfo.bitDepth == 8) {
int size = reader.imgInfo.cols * reader.imgInfo.rows;
ByteBuffer buffer = ByteBuffer.allocate(size);
for (int row = 0; row < reader.imgInfo.rows; row++) {
IImageLine line = reader.readRow();
for (int col = 0; col < reader.imgInfo.cols; col++) {
int pixel = ImageLineHelper.getPixelRGB8(line, col);
byte gray = (byte)(pixel & 0x000000ff);
buffer.put(row * reader.imgInfo.cols + col, gray);
}
}
reader.end();
result = Bitmap.createBitmap(reader.imgInfo.cols, reader.imgInfo.rows, Bitmap.Config.ALPHA_8);
result.copyPixelsFromBuffer(buffer);
}
} catch (IOException e) {}
return result;
}