Package railo.runtime.img.filter

Examples of railo.runtime.img.filter.WarpGrid


import railo.runtime.op.Caster;

public class ImageFilterWarpGrid {
 
  public static Object call(PageContext pc, double rows, double cols, double width, double height) {
    return new WarpGrid(Caster.toIntValue(rows), Caster.toIntValue(cols), Caster.toIntValue(width), Caster.toIntValue(height));
  }
View Full Code Here

TOP

Related Classes of railo.runtime.img.filter.WarpGrid

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.