# Print output for @column tags ?>
public
static
class
ImageDecoder.ImageInfo
extends Object
| java.lang.Object | |
| ↳ | android.graphics.ImageDecoder.ImageInfo |
Information about an encoded image.
Public methods | |
|---|---|
ColorSpace
|
getColorSpace()
If known, the color space the decoded bitmap will have. |
String
|
getMimeType()
The mimeType of the image. |
Size
|
getSize()
Size of the image, without scaling or cropping. |
boolean
|
isAnimated()
Whether the image is animated. |
Inherited methods | |
|---|---|
public ColorSpace getColorSpace ()
If known, the color space the decoded bitmap will have. Note that the
output color space is not guaranteed to be the color space the bitmap
is encoded with. If not known (when the config is
Bitmap.Config#ALPHA_8 for instance), or there is an error,
it is set to null.
| Returns | |
|---|---|
ColorSpace |
|
public String getMimeType ()
The mimeType of the image.
| Returns | |
|---|---|
String |
This value cannot be null. |
public Size getSize ()
Size of the image, without scaling or cropping.
| Returns | |
|---|---|
Size |
This value cannot be null. |
public boolean isAnimated ()
Whether the image is animated.
If true, decodeDrawable will
return an AnimatedImageDrawable.
| Returns | |
|---|---|
boolean |
|