2016-11-07 11 views
0

getTagName()メソッドの配列全体を、タグの形式でそのまま文字列ではなくそのまま出力することができませんでした。このメタデータ抽出ライブラリを使用してexifタグの配列を表示するにはどうすればよいですか?

https://drewnoakes.com/code/exif/

try { 
    InputStream is = new URL("http://www.dbituser1.dbitmobileappchallenge.com/uploadimage1/uploads/sample_0%20-%20Copy.jpg").openStream(); 
    BufferedInputStream bis = new BufferedInputStream(is); 
    Metadata metadata = ImageMetadataReader.readMetadata(bis); 

    for (Directory directory : metadata.getDirectories()) { 
     for (Tag tag : directory.getTags()) { 
      //Toast.makeText(DetailsActivity.this, "" + tag.getTagName() +": " + tag.getDescription(), Toast.LENGTH_LONG).show(); 
      if (tag.getTagName().contains("ISO")) { 
       TextView text = (TextView) findViewById(R.id.textView); 
       text.setText("ISO: " + tag.getDescription()); 
      } 

      if (tag.getTagName().contains("Exposure")) { 
       Toast.makeText(DetailsActivity.this, "This is the Date: " + tag.getDescription(), Toast.LENGTH_LONG).show(); 
       //TextView text = (TextView) findViewById(R.id.textView1); 
       //text.setText("Exposure: " + tag.getDescription()); 
      } 
     } 
    } 
} catch (ImageProcessingException e) { 
} catch (IOException e) { 
} 

答えて

0

あなたは2つのだけの値が必要な場合は、それらのすべてを反復しません。代わりに、あなたが探している特定のディレクトリを取り出し、次にタグを直接取り出してください。

コードからは、ExifSubIfdDirectoryが必要です。

ExifSubIFDDirectory subIfd = metadata.getFirstDirectoryOfType(ExifSubIFDDirectory.class); 

if (subIfd != null) { 
    // NOTE these values could be null if they aren't present in the image's metadata 
    Integer iso = subIfd.getInteger(ExifSubIFDDirectory.TAG_ISO_EQUIVALENT); 
    Double exposureTime = subIfd.getDoubleObject(ExifSubIFDDirectory.TAG_EXPOSURE_TIME); 
} 
関連する問題