在 Android 中将 EXIF 元数据写入图像
我想在图像中存储一些元数据。我的相机应用程序为我提供了一个位图,我将其存储在存储 (MediaStore) 设备中。除此之外,我想在图片的元数据中添加一些标签。我认为 EXIF 是做到这一点的好方法。但我找不到关于如何执行此操作的良好参考。
如果在Android编程中有一些工具可以实现这个任务,请告诉我。
谢谢
I want to store some metadata in images. My camera application gives me a bitmap, which I store in the storage (MediaStore) device. In addition to this, I want to add a few tags to the picture in its metadata. I think EXIF is a good way of doing this. But I couldn't find good references on how to do this.
If there are some tools to achieve this task in Android programming, please let me know.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
好的,有人(离线)向我指出了一个有用的资源。
ExifInterface
看起来像我正在寻找的东西。 Android-er 有一个帖子演示了如何在Android中读取EXIF元数据,我认为写作应该没有太大不同。我不知道,但是我们可以通过 EXIF 来写入任意元数据,即。除了 ExifInterface 文档 中指定的内容(例如纬度、经度、闪存ETC)。如果不是,将任意元数据写入图像文件的首选方法是什么?
谢谢
Ok, Somebody (offline) pointed me to a useful resource. The
ExifInterface
looks like what I was searching for. Android-er has a post demonstrating how to read EXIF metadata in Android and I think writing should not be very different.I don't know, but can we EXIF to write arbitrary metadata, ie. other than those specified in the ExifInterface documentation (like latitude, longitude, flash etc). If not, what could be a preferred method of writing arbitrary metadata to image files?
Thanks
我从此处复制了答案
I copied the answer from here