「グレースケールビットマップ」(1バイト-> 1ピクセル)に対応するバイトの配列があり、この画像のPNGファイルを作成する必要があります。
以下の方法は機能しますが、私が使用しているビットマップはARGB_8888ビットマップであり、1バイトではなく4バイト/ピクセルを使用するため、作成されるpngは巨大です。
ARGB_8888とは異なる他のBitmap.Configで動作させることができませんでした。おそらくALPHA_8が必要なのですが、それを機能させることができませんでした。
他のいくつかの投稿に含まれているtoGrayScaleメソッド(AndroidでビットマップをGrayScaleに変換する)も試しましたが、サイズに関して同じ問題があります。
public static boolean createPNGFromGrayScaledBytes(ByteBuffer grayBytes, int width,
int height,File pngFile) throws IOException{
if (grayBytes.remaining()!=width*height){
Logger.error(Tag, "Unexpected error: size mismatch [remaining:"+grayBytes.remaining()+"][width:"+width+"][height:"+height+"]", null);
return false;
}
Bitmap bitmap = Bitmap.createBitmap(width, height, Bitmap.Config.ARGB_8888);
// for each byte, I set it in three color channels.
int gray,color;
int x=0,y=0;
while(grayBytes.remaining()>0){
gray = grayBytes.get();
// integer may be negative as byte is signed. make them positive.
if (gray<0){gray+=256;}
// for each byte, I set it in three color channels.
color= Color.argb(-1, gray, gray, gray);
bitmap.setPixel(x, y, color);
x++;
if (x==width){
x=0;
y++;
}
}
FileOutputStream fos=null;
fos = new FileOutputStream(pngFile);
boolean result= bitmap.compress(Bitmap.CompressFormat.PNG,100,fos);
fos.close();
return result;
}
編集:生成されたファイルへのリンク(意味がないように見えるかもしれませんが、ランドンデータで作成されただけです)。 http://www.tempfiles.net/download/201208/256402/huge_png.html
どんな助けでも大歓迎です。