Android 中如何获取图片的大小?

发布于 2025-01-05 22:48:31 字数 64 浏览 0 评论 0原文

我能够获取图像的高度和宽度。但是有没有一种方法可以检索手机中存储的图像的大小(以字节或 kb 或 mb 为单位)?

I'm able to get the height and width of an image. But is there a method to retrieve the size (in bytes or kb or mb) for an image stored in the phone?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

万劫不复 2025-01-12 22:48:31

谢谢您的回答。这就是我最终解决它的方法:

 Bitmap bitmapOrg = BitmapFactory.decodeResource(getResources(), 
            R.drawable.ic_launcher);


     Bitmap bitmap = bitmapOrg;
     ByteArrayOutputStream stream = new ByteArrayOutputStream();   
     bitmap.compress(Bitmap.CompressFormat.JPEG, 100, stream);   
     byte[] imageInByte = stream.toByteArray(); 
     long lengthbmp = imageInByte.length; 

感谢您的时间和答案:)

Thank you for your answers. This is how I finally resolved it:

 Bitmap bitmapOrg = BitmapFactory.decodeResource(getResources(), 
            R.drawable.ic_launcher);


     Bitmap bitmap = bitmapOrg;
     ByteArrayOutputStream stream = new ByteArrayOutputStream();   
     bitmap.compress(Bitmap.CompressFormat.JPEG, 100, stream);   
     byte[] imageInByte = stream.toByteArray(); 
     long lengthbmp = imageInByte.length; 

Appreciate your time and answers :)

用心笑 2025-01-12 22:48:31

您只需要创建一个新的 File 对象,例如...

String filepath = Environment.getExternalStorageDirectory() + "/file.png";
File file = new File(filepath);
long length = file.length();

You just need to create a new File object such as...

String filepath = Environment.getExternalStorageDirectory() + "/file.png";
File file = new File(filepath);
long length = file.length();
北陌 2025-01-12 22:48:31

假设您谈论的是位图(而不是 ImageView),有一个方法 Bitmap.getByteCount()

Assuming your talking about a bitmap (and NOT an ImageView), there is a method Bitmap.getByteCount().

输什么也不输骨气 2025-01-12 22:48:31
 File file = new File("/sdcard/imageName.jpeg");
 long length = file.length();
 length = length/1024;
 System.out.println("File Path : " + file.getPath() + ", File size : " + length +" KB");
 File file = new File("/sdcard/imageName.jpeg");
 long length = file.length();
 length = length/1024;
 System.out.println("File Path : " + file.getPath() + ", File size : " + length +" KB");
寒江雪… 2025-01-12 22:48:31

当您右键单击查看文件详细信息时,这将返回与计算机匹配的真实大小。

File file = new File("/sdcard/my_video.mp4");
long length = file.length() / 1024; // Size in KB

This returns the true size that is match in computers when you see file details with right click.

File file = new File("/sdcard/my_video.mp4");
long length = file.length() / 1024; // Size in KB
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文