在我的应用程序中,我正在下载一些图像,我想知道是否有任何方法可以获得我已下载的位图的大小。这是一个简单的问题,但我似乎无法通过谷歌找到解决方案。
这是下载代码:
Bitmap b = BitmapFactory.decodeStream((InputStream) new URL(theImageUrl).getContent());
答案 0 :(得分:2)
首先将Bitmap转换为byte []然后你可以得到位图的大小
尝试以下代码
Bitmap bitmap = your bitmap object
ByteArrayOutputStream stream = new ByteArrayOutputStream();
bitmap.compress(Bitmap.CompressFormat.JPEG, 100, stream);
byte[] imageInByte = stream.toByteArray();
long length = imageInByte.length;
答案 1 :(得分:1)
File file = new File("infilename");
// Get the number of bytes in the file
long length = file.length();
答案 2 :(得分:1)
使用b.getByteCount();或者您想在下载之前从服务器查询大小?
编辑:此方法仅适用于API级别12。