net.sf.image4j.codec.ico
Class ICODecoder

java.lang.Object
  extended by net.sf.image4j.codec.ico.ICODecoder

public class ICODecoder
extends java.lang.Object

Decodes images in ICO format.

Author:
Ian McDonagh

Method Summary
static java.util.List<java.awt.image.BufferedImage> read(java.io.File file)
          Reads and decodes the given ICO file.
static java.util.List<java.awt.image.BufferedImage> read(java.io.InputStream is)
          Reads and decodes ICO data from the given source.
static java.util.List<ICOImage> readExt(java.io.File file)
          Reads and decodes the given ICO file, together with all metadata.
static java.util.List<ICOImage> readExt(java.io.InputStream is)
          Reads and decodes ICO data from the given source, together with all metadata.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Method Detail

read

public static java.util.List<java.awt.image.BufferedImage> read(java.io.File file)
                                                         throws java.io.IOException
Reads and decodes the given ICO file. Convenience method equivalent to read(new java.io.FileInputStream(file)).

Parameters:
file - the source file to read
Returns:
the list of images decoded from the ICO data
Throws:
java.io.IOException - if an error occurs

readExt

public static java.util.List<ICOImage> readExt(java.io.File file)
                                        throws java.io.IOException
Reads and decodes the given ICO file, together with all metadata. Convenience method equivalent to readExt(new java.io.FileInputStream(file)).

Parameters:
file - the source file to read
Returns:
the list of images decoded from the ICO data
Throws:
java.io.IOException - if an error occurs
Since:
0.7

read

public static java.util.List<java.awt.image.BufferedImage> read(java.io.InputStream is)
                                                         throws java.io.IOException
Reads and decodes ICO data from the given source. The returned list of images is in the order in which they appear in the source ICO data.

Parameters:
is - the source InputStream to read
Returns:
the list of images decoded from the ICO data
Throws:
java.io.IOException - if an error occurs

readExt

public static java.util.List<ICOImage> readExt(java.io.InputStream is)
                                        throws java.io.IOException
Reads and decodes ICO data from the given source, together with all metadata. The returned list of images is in the order in which they appear in the source ICO data.

Parameters:
is - the source InputStream to read
Returns:
the list of images decoded from the ICO data
Throws:
java.io.IOException - if an error occurs
Since:
0.7