gpt4 book ai didi

android - BitmapFacotry.decodeByteArray 为有效图像的字节数组返回 null

转载 作者:行者123 更新时间:2023-11-29 01:50:15 27 4
gpt4 key购买 nike

这是 mp3 文件标签中的图像 http://i.stack.imgur.com/HtXqA.jpg

我使用 Android 的 MediaMetaDataRetreiver 从 mp3 文件中获取此图像字节数组...当我尝试使用 BitmapFactory.decodeByteArray 解码此图像时,它返回 null

我们将不胜感激

编辑:当我第一次使用 options.inJustDecodeBounds = true 解码时...options.outWidth 和 options.outHeight 返回正确的宽度和高度

完整代码:

MediaMetadataRetriever retriever = new MediaMetadataRetriever();
retriever.setDataSource(context, songUri);
byte[] data = retriever.getEmbeddedPicture();
if(data != null)
{
BitmapFactory.Options options = new BitmapFactory.Options();
options.inJustDecodeBounds = true;
BitmapFactory.decodeByteArray(data, 0, data.length, options);
options.inSampleSize = BitmapUtils.calculateInSampleSize(options, 500, 500);
options.inJustDecodeBounds = false;
albumArtBitmap = BitmapFactory.decodeByteArray(data, 0, data.length, options);
}

最佳答案

改用流:

InputStream is;
Bitmap bitmap;
is = context.getResources().openRawResource(R.drawable.someImage);

bitmap = BitmapFactory.decodeStream(is);
try {
is.close();
is = null;
} catch (IOException e) {
}

顺便说一句,我还没有尝试过 jpg,但我想这可能是个问题。尝试将其转换为“png”

关于android - BitmapFacotry.decodeByteArray 为有效图像的字节数组返回 null,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18636867/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com