Examples of drawRect()


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

    if (width < 0)
        throw new FunctionException(pc,"ImageDrawRect",3,"width","width must contain a none negative value");
    if (height < 0)
        throw new FunctionException(pc,"ImageDrawRect",4,"height","width must contain a none negative value");
   
    img.drawRect((int)x, (int)y, (int)width, (int)height, filled);
    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.