The wrapper class for image objects.
MPImage
is designed to be an immutable image container, which could be shared
cross-platforms.
To construct a MPImage
, use the provided builders:
MPImage
uses reference counting to maintain internal storage. When it is created the
reference count is 1. Developer can call close()
to reduce reference count to release
internal storage earlier, otherwise Java garbage collection will release the storage eventually.
To extract concrete image, first check MPImage.StorageType
and then use the provided
extractors:
Nested Classes
@interface | MPImage.MPImageFormat | Specifies the image format of an image. | |
@interface | MPImage.StorageType | Specifies the image container type. |
Constants
int | IMAGE_FORMAT_ALPHA | |
int | IMAGE_FORMAT_JPEG | |
int | IMAGE_FORMAT_NV12 | |
int | IMAGE_FORMAT_NV21 | |
int | IMAGE_FORMAT_RGB | |
int | IMAGE_FORMAT_RGBA | |
int | IMAGE_FORMAT_UNKNOWN | |
int | IMAGE_FORMAT_VEC32F1 | |
int | IMAGE_FORMAT_VEC32F2 | |
int | IMAGE_FORMAT_YUV_420_888 | |
int | IMAGE_FORMAT_YV12 | |
int | IMAGE_FORMAT_YV21 | |
int | STORAGE_TYPE_BITMAP | |
int | STORAGE_TYPE_BYTEBUFFER | |
int | STORAGE_TYPE_IMAGE_PROXY | |
int | STORAGE_TYPE_MEDIA_IMAGE |
Public Methods
synchronized void |
close()
Removes a reference that was previously acquired or init.
|
List<MPImageProperties> |
getContainedImageProperties()
Returns a list of supported image properties for this
MPImage . |
int |
getHeight()
Returns the height of the image.
|
int |
getWidth()
Returns the width of the image.
|
Inherited Methods
Constants
public static final int IMAGE_FORMAT_ALPHA
public static final int IMAGE_FORMAT_JPEG
public static final int IMAGE_FORMAT_NV12
public static final int IMAGE_FORMAT_NV21
public static final int IMAGE_FORMAT_RGB
public static final int IMAGE_FORMAT_RGBA
public static final int IMAGE_FORMAT_UNKNOWN
public static final int IMAGE_FORMAT_VEC32F1
public static final int IMAGE_FORMAT_VEC32F2
public static final int IMAGE_FORMAT_YUV_420_888
public static final int IMAGE_FORMAT_YV12
public static final int IMAGE_FORMAT_YV21
public static final int STORAGE_TYPE_BITMAP
public static final int STORAGE_TYPE_BYTEBUFFER
public static final int STORAGE_TYPE_IMAGE_PROXY
public static final int STORAGE_TYPE_MEDIA_IMAGE
Public Methods
public synchronized void close ()
Removes a reference that was previously acquired or init.
When MPImage
is created, it has 1 reference count.
When the reference count becomes 0, it will release the resource under the hood.
public List<MPImageProperties> getContainedImageProperties ()
public int getHeight ()
Returns the height of the image.
public int getWidth ()
Returns the width of the image.