328329330331332333334
* @param width the image width * @param height the image height * @param imgData the image data */ public void addImage(int x, int y, int width, int height, byte[] imgData) { addObject(new GraphicsImage(x, y, width, height, imgData)); }
310311312313314315316