Package com.itstherules.image.buffered

Examples of com.itstherules.image.buffered.BicubicScaleFilter


    if(maintainAspect){
      double scale = new ScaleCalculator().calculate((double)imageWidth, (double)imageHeight, (double)width, (double)height);
      width = (int) (imageWidth * scale);
      height = (int) (imageHeight * scale);
    }
    BicubicScaleFilter op = new BicubicScaleFilter(width, height);
    this.image = op.filter(image, null);

  }
View Full Code Here

TOP

Related Classes of com.itstherules.image.buffered.BicubicScaleFilter

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.