Method Summary |
|
public void | add(int index, Object element) Inserts the specified element at the specified position in this list.
throws: IllegalArgumentException - if the specified elementis not a RenderedImage . throws: IndexOutOfBoundsException - if the index is out of range(index < 0 || index > size()). |
public boolean | add(Object o) Adds the specified object to this List .
throws: IllegalArgumentException - if o is null or is not an RenderedImage . |
public boolean | addAll(int index, Collection c) Inserts into this List at the indicated position
all elements in the specified Collection which are
RenderedImage s. |
public boolean | addAll(Collection c) Adds to this List all elements in the specified
Collection which are RenderedImage s. |
public WritableRaster | copyData(WritableRaster dest) Copies an arbitrary rectangular region of the primary image
into a caller-supplied WritableRaster. |
public Object | get(int index) the RenderedImage object at thespecified index. Parameters: index - index of element to return. |
public ColorModel | getColorModel() Returns the ColorModel of the primary image. |
public Raster | getData() Returns the entire primary image in a single Raster . |
public Raster | getData(Rectangle bounds) Returns an arbitrary rectangular region of the primary image
in a Raster . |
public int | getHeight() Returns the height of the primary image. |
public int | getMinTileX() Returns the horizontal index of the leftmost column of tiles
of the primary image. |
public int | getMinTileY() Returns the vertical index of the uppermost row of tiles
of the primary image. |
public int | getMinX() Returns the X coordinate of the leftmost column of the
primary image. |
public int | getMinY() Returns the X coordinate of the uppermost row of the primary image. |
public int | getNumXTiles() Returns the number of tiles of the primary image along the
tile grid in the horizontal direction. |
public int | getNumYTiles() Returns the number of tiles of the primary image along the
tile grid in the vertical direction. |
public RenderedImage | getPrimaryImage() Returns the first image in the underlying list of
RenderedImage s. |
public Object | getProperty(String name) Gets a property from the property set of this image. |
public String[] | getPropertyNames() Returns a list of the properties recognized by this image. |
public SampleModel | getSampleModel() Returns the SampleModel of the primary image. |
public Vector | getSources() Returns a Vector containing the image sources. |
public Raster | getTile(int tileX, int tileY) Returns tile (tileX , tileY ) of the
primary image as a Raster . |
public int | getTileGridXOffset() Returns the X coordinate of the upper-left pixel of tile (0, 0)
of the primary image. |
public int | getTileGridYOffset() Returns the Y coordinate of the upper-left pixel of tile (0, 0)
of the primary image. |
public int | getTileHeight() Returns the height of a tile of the primary image. |
public int | getTileWidth() Returns the width of a tile of the primary image. |
public int | getWidth() Returns the width of the primary image. |
public int | indexOf(Object o) |
public int | lastIndexOf(Object o) |
public ListIterator | listIterator() |
public ListIterator | listIterator(int index) |
public Object | remove(int index) |
public Object | set(int index, Object element) |
public List | subList(int fromIndex, int toIndex) |