public void setColorModel(ColorModel model) { colorModel = model; createImage(); }
/** * Notification of the properties of the image to use. Not used in this implementation. * * @param props The map of properties for this image */ public void setProperties(Hashtable props) { createImage(); }
/** * Notification of the dimensions of the source image. * * @param w The width of the source image * @param h The height of the source image */ public void setDimensions(int w, int h) { width = w; height = h; createImage(); }