Package railo.runtime.img

Examples of railo.runtime.img.Image.rotate()


    else if("bicubic".equals(strInterpolation)) interpolation=railo.runtime.img.Image.INTERPOLATION_BICUBIC;
    else if("none".equals(strInterpolation)) interpolation=railo.runtime.img.Image.INTERPOLATION_NONE;
    else throw new ExpressionException("invalid interpolation definition ["+strInterpolation+"]," +
        " valid values are [nearest,bilinear,bicubic]");
   
    img.rotate(x,y,angle,interpolation);
    return null;
   
  }
}
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.