Package ca.carleton.gcrc.couch.onUpload.conversion

Examples of ca.carleton.gcrc.couch.onUpload.conversion.ExifDataDescriptor


   
    // Report EXIF data
    ExifData exifData = request.getExifData();
    if( null != exifData
     && exifData.getSize() > 0 ) {
      ExifDataDescriptor exifDescriptor = attDescription.getExifDataDescription();
      for(String key : exifData.getKeys()){
        String value = exifData.getRawData(key);
        if( null != value ){
          value = value.trim();
          if( false == "".equals(value) ){
            exifDescriptor.addData(key, value);
          }
        }
      }
     
      // Create geometry if one is present in the EXIF
View Full Code Here


   
    // Report EXIF data
    ExifData exifData = request.getExifData();
    if( null != exifData
     && exifData.getSize() > 0 ) {
      ExifDataDescriptor exifDescriptor = attDescription.getExifDataDescription();
      for(String key : exifData.getKeys()){
        String value = exifData.getRawData(key);
        if( null != value ){
          value = value.trim();
          if( false == "".equals(value) ){
            exifDescriptor.addData(key, value);
          }
        }
      }
     
      // Create geometry if one is present in the EXIF
View Full Code Here

TOP

Related Classes of ca.carleton.gcrc.couch.onUpload.conversion.ExifDataDescriptor

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.