Package net.anwiba.commons.image
Interface IImageMetadata
-
- All Superinterfaces:
java.io.Serializable
- All Known Implementing Classes:
ImageMetadata,InvalidImageMetadata
public interface IImageMetadata extends java.io.Serializable
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description intgetColorSpaceType()intgetDataType()floatgetHeight()intgetNumberOfBands()intgetNumberOfColorComponents()intgetTransparency()floatgetWidth()booleanisIndexed()
-
-
-
Method Detail
-
getWidth
float getWidth()
-
getHeight
float getHeight()
-
getNumberOfColorComponents
int getNumberOfColorComponents()
-
getNumberOfBands
int getNumberOfBands()
-
getColorSpaceType
int getColorSpaceType()
-
getDataType
int getDataType()
-
getTransparency
int getTransparency()
-
isIndexed
boolean isIndexed()
-
-