|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectnet.sf.image4j.codec.bmp.BMPImage
net.sf.image4j.codec.ico.ICOImage
public class ICOImage
Contains a decoded ICO image, as well as information about the source encoded ICO image.
Field Summary | |
---|---|
protected IconEntry |
iconEntry
|
protected int |
iconIndex
|
protected boolean |
pngCompressed
|
Fields inherited from class net.sf.image4j.codec.bmp.BMPImage |
---|
image, infoHeader |
Constructor Summary | |
---|---|
ICOImage(java.awt.image.BufferedImage image,
InfoHeader infoHeader,
IconEntry iconEntry)
Creates a new instance of ICOImage |
Method Summary | |
---|---|
int |
getColourCount()
The number of possible colours for the ICO image. |
int |
getColourDepth()
The colour depth of the ICO image (bits per pixel). |
int |
getHeight()
The height of the ICO image in pixels. |
IconEntry |
getIconEntry()
The IconEntry associated with this ICOImage, which provides information about the image format and encoding. |
int |
getIconIndex()
The zero-based index for this ICOImage in the source ICO file or resource. |
InfoHeader |
getInfoHeader()
The InfoHeader structure representing the encoded ICO image. |
int |
getWidth()
The width of the ICO image in pixels. |
boolean |
isIndexed()
Specifies whether this ICO image is indexed, that is, the encoded bitmap uses a colour table. |
boolean |
isPngCompressed()
Specifies whether the encoded image is PNG compressed. |
void |
setIconEntry(IconEntry iconEntry)
Sets the IconEntry associated with this ICOImage. |
void |
setIconIndex(int iconIndex)
Sets the icon index, which is zero-based. |
void |
setPngCompressed(boolean pngCompressed)
Sets whether the encoded image is PNG compressed. |
Methods inherited from class net.sf.image4j.codec.bmp.BMPImage |
---|
getImage, setImage, setInfoHeader |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
protected IconEntry iconEntry
protected boolean pngCompressed
protected int iconIndex
Constructor Detail |
---|
public ICOImage(java.awt.image.BufferedImage image, InfoHeader infoHeader, IconEntry iconEntry)
image
- the BufferedImage decoded from the source ICO imageinfoHeader
- the BMP InfoHeader structure for the BMP encoded ICO imageiconEntry
- the IconEntry structure describing the ICO imageMethod Detail |
---|
public IconEntry getIconEntry()
public void setIconEntry(IconEntry iconEntry)
iconEntry
- the new IconEntry structure to setpublic boolean isPngCompressed()
public void setPngCompressed(boolean pngCompressed)
pngCompressed
- true if the encoded image is PNG compressed, false if it is plain BMP encodedpublic InfoHeader getInfoHeader()
getInfoHeader
in class BMPImage
public int getIconIndex()
public void setIconIndex(int iconIndex)
iconIndex
- the zero-based icon index, or -1 if unknown.public int getWidth()
getWidth
in class BMPImage
public int getHeight()
getHeight
in class BMPImage
public int getColourDepth()
getColourDepth
in class BMPImage
public int getColourCount()
getColourCount
in class BMPImage
public boolean isIndexed()
isIndexed
in class BMPImage
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |