Package com.netfever.common.jpeg

Examples of com.netfever.common.jpeg.ImageDetail


      } else {
        photo.setFullSizeBW(FILE_STORAGE_PREFIX + filePath);
      }

      in = Configuration.getSystemRoot().getRoot().getFileItem(filePath).openRead();
      ImageDetail originalDetail;
     
      try {
        originalDetail = ImageUtils.getImageDetail(in);
      } finally {
        in.close();
      }
     
      in = Configuration.getSystemRoot().getRoot().getFileItem(filePath).openRead();
     
      try {
        out = Configuration.getSystemRoot().getRoot().getFileItem(filePath + THUMB_EXT).openWrite();
       
        try {
          double ratio = originalDetail.getHeight() / THUMB_HEIGHT;
          ImageUtils.resize(in, out, ratio);       
        } finally {
          out.close();
        }       
      } finally {
View Full Code Here

TOP

Related Classes of com.netfever.common.jpeg.ImageDetail

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.