Package railo.runtime.img.interpolation

Examples of railo.runtime.img.interpolation.Hanning


    private static Interpolation getInterpolation(int interpolation) throws ExpressionException {
    switch (interpolation) {
   
      case 0return new Triangle();
      case Image.IP_HERMITE:  return new Hermite();
      case Image.IP_HANNING:  return new Hanning();
      case Image.IP_MEDIUMQUALITY:
      case Image.IP_HIGHPERFORMANCE:
      case Image.IP_HAMMING:  return new Hamming();
      case Image.IP_BLACKMAN:  return new Blackman();
      case Image.IP_QUADRATIC:return new Quadratic();
View Full Code Here

TOP

Related Classes of railo.runtime.img.interpolation.Hanning

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.