Package com.pegaa.uploader.tools

Examples of com.pegaa.uploader.tools.JpegExif


    }
   
   
    private JpegExif getExif(ListItem item)
    {
        JpegExif exif = new JpegExif();
        File file = item.getFile();
        try{
            exif.readJPEGMeta(file.getAbsolutePath());
  }catch(Exception e){  
       e.printStackTrace();
        }
        return exif;
    }
View Full Code Here


     *      If this i
     *
     * @return
     */
    public JpegExif getExif(){
        JpegExif exif = new JpegExif();
        try{
            exif.readJPEGMeta(this.file.getAbsolutePath());
  }catch(Exception e){
       e.printStackTrace();
        }
        return exif;
    }
View Full Code Here

TOP

Related Classes of com.pegaa.uploader.tools.JpegExif

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.