Package railo.runtime.img

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


    else if("bilinear".equals(strInterpolation))   interpolation = RenderingHints.VALUE_INTERPOLATION_BILINEAR;
    else if("bicubic".equals(strInterpolation))   interpolation = RenderingHints.VALUE_INTERPOLATION_BICUBIC;
    else throw new FunctionException(pc,"ImageTranslate",4,"interpolation","invalid interpolation definition ["+strInterpolation+"], " +
        "valid interpolation values are [nearest,bilinear,bicubic]");
   
    img.shear((float)shear, direction, 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.