jauharshaikh / metadata-extractor

Automatically exported from code.google.com/p/metadata-extractor
0 stars 0 forks source link

problem with the lunch of an application using medataextractor library 2.6.4 #77

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago

What steps will reproduce the problem?
1.I add the external jars to my project
2. then write the body activity:
imageFile = new File("/sdcard/pictures/E990.jpg");
        try {
            Metadata metadata = ImageMetadataReader.readMetadata(imageFile);

            for (Directory directory : metadata.getDirectories()) {
                for (Tag allTags : directory.getTags()) {

                    myAttribute+=allTags.getTagName();
                    myTextView.setText(myAttribute); 
                }......

3. It's expecting to display the exif metadata, but I have always an error

could not find method  com.drew.imaging.ImageMetadataReader.readMeta

I use the 2.6.4 version on windows.

additional information: it's my first use of this library and the application 
was simple app for reading exif metadata.

thanks in advance.

Original issue reported on code.google.com by jsut.an....@gmail.com on 2 Apr 2013 at 10:40

GoogleCodeExporter commented 8 years ago

Original comment by drewnoakes on 19 Nov 2014 at 7:11