Package com.baasbox.dao

Examples of com.baasbox.dao.FileAssetDao.storeResizedPicture()


        format= WritebleImageFormat.png;
      }
      resizedImage=StorageUtils.resizeImage(fileContent.toByteArray(), format, dimensions);
     
      //save the resized image for future requests
      dao.storeResizedPicture(asset, sizePattern, resizedImage);
      return resizedImage;
    }catch ( InvalidModelException e) {
      throw new RuntimeException("A very strange error occurred! ",e);
    }
  }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.