如何从图片中获取元数据?
我正在浏览网页,但无法找到如何从图片中获取元数据。
有人有想法吗?
我在 Bitmap/BitmapFactory/BitmapFactory.Options 文档中看不到任何可以给我提示的内容。
我想检索标准信息,例如:
- 名称、
- 日期、
- 尺寸
- 、尺寸
等。
有什么想法吗?
I am browsing the web but no way to find how to get metadata from a picture.
Does anyone has an idea ?
I can't see anything in the Bitmap/BitmapFactory/BitmapFactory.Options documentation that would give me a hint.
I would like to retrieve standard information such as :
- name
- date it was taken
- dimension
- size
and maybe more.
Any idea ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以通过将 BitmapFactory.Options.inJustDecodeBounds 设置为 true 来至少获取图像的大小。
如果图像位于 MediaStore 中,您也许可以获得更多信息。
You can get at least the size of the image by setting BitmapFactory.Options.inJustDecodeBounds to true.
If the image is in the MediaStore, you might be able to get more information.
根据此线程
http://osdir.com/ml/AndroidDevelopers/2009- 02/msg00821.html
你必须使用ImageManager
According to this thread
http://osdir.com/ml/AndroidDevelopers/2009-02/msg00821.html
you have to use ImageManager