Editing / Adding IPTC Metadata in Android Application

I've looked at many other similar questions, but none of them seem to have an exact answer.

I am working on an Android application that works with a lot of images. I want to add information to images by editing the value of my IPTC keyword tag (or other relevant tags). I am using Metadata Extractor to read metadata, but this library does not support writing metadata.

I have looked at Apache Sanselan which doesn't seem to fit because it has a lot of dependency on java.awt

(which is not available in Android). I know Imagero , but I haven't used it yet in the hopes of finding a better open source library.

Has anyone come across such a library? I prefer it to be open source, but even commercial suggestions would be appreciated.

Thanks in advance.

+3


source to share


2 answers


https://github.com/k3b/pixymeta-android/ is a fork https://github.com/dragon66/pixymeta-android/ which implemented

  • the only source for android and jave2se / awt


However, there is still a lot of work to do to implement an easy-to-use api

0


source


Use http://sourceforge.net/projects/iim4j/ Will not work out of the box, but could be adapted. I did this to add the Copyright Notice and Contact fields. Haven't tried other fields as I didn't need them. So this is your bet.



Sorry, I can't share this code.

-1


source







All Articles