Package railo.runtime.img

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


    else if("180".equals(strTranspose)) transpose=TransposeDescriptor.ROTATE_180;
    else if("270".equals(strTranspose)) transpose=TransposeDescriptor.ROTATE_270;
    else throw new FunctionException(pc,"ImageFlip",2,"transpose","invalid transpose definition ["+strTranspose+"], " +
        "valid transpose values are [vertical,horizontal,diagonal,90,180,270]");
   
    img.flip(transpose);
    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.