如何从 Android 中的图像文件中检索元数据
如何在 Android 环境中从图像文件中检索元数据信息,例如格式(jpeg、bmp、png、..)、宽度、高度等?
How can I retrieve metadata information such as format (jpeg, bmp, png, ..), width, height etc. from image files in Android environment?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以像这样提取图像的宽度、高度和 MIME 类型:
You can extract the width, height, and MIME type of an image like this:
是的,尝试查找 ContentValues 类、contentResolver() 函数和 URI 类。这应该包含您执行任何操作所需的信息。
Yes, try looking up the ContentValues class, contentResolver() function, and the URI class. This should have the information you need do whatever you're trying to do.