docs/javadoc/reference/com/facebook/animated/giflite/draw/MovieAnimatedImage.html
|
|
Summary: Inherited Constants | Ctors | Methods | Inherited Methods | [Expand All]
public class
extends Object
implements AnimatedImage
| java.lang.Object | | ↳ | com.facebook.animated.giflite.draw.MovieAnimatedImage |
Simple wrapper for an animated image backed by Movie.
| [Expand] Inherited Constants | | --- | | From interface com.facebook.imagepipeline.animated.base.AnimatedImage
| int | LOOP_COUNT_INFINITE | |
|
| Public Constructors |
|---|
| Public Methods |
|---|
| void |
| Disposes the instance. |
| boolean |
Returns whether renderFrame(int, int, Bitmap) supports scaling to arbitrary sizes or whether scaling must be done externally. |
| int |
| Gets the duration of the animated image. |
| AnimatedImageFrame |
Creates an AnimatedImageFrame at the specified index. |
| int |
| Gets the number of frames in the image. |
| int[] |
| Gets the duration of each frame of the animated image. |
| AnimatedDrawableFrameInfo |
| Gets the frame info for the specified frame. |
| int |
| Gets the height of the image (also known as the canvas in WebP nomenclature). |
| int |
| Gets the number of loops to run the animation for. |
| int |
| Gets the size of bytes of the encoded image data (which is the data kept in memory for the image). |
| int |
| Gets the width of the image (also known as the canvas in WebP nomenclature). |
| [Expand] Inherited Methods | | --- | | From class java.lang.Object
| Object | clone() | | boolean | equals(Object arg0) | | void | finalize() | | final Class<?> | getClass() | | int | hashCode() | | final void | notify() | | final void | notifyAll() | | String | toString() | | final void | wait(long arg0, int arg1) | | final void | wait(long arg0) | | final void | wait() |
| | From interface com.facebook.imagepipeline.animated.base.AnimatedImage
| abstract void | dispose()
Disposes the instance.
|
| abstract boolean | doesRenderSupportScaling()
Returns whether renderFrame(int, int, Bitmap) supports scaling to arbitrary sizes or whether scaling must be done externally.
|
| abstract int | getDuration()
Gets the duration of the animated image.
|
| abstract AnimatedImageFrame | getFrame(int frameNumber)
Creates an AnimatedImageFrame at the specified index.
|
| abstract int | getFrameCount()
Gets the number of frames in the image.
|
| abstract int[] | getFrameDurations()
Gets the duration of each frame of the animated image.
|
| abstract AnimatedDrawableFrameInfo | getFrameInfo(int frameNumber)
Gets the frame info for the specified frame.
|
| abstract int | getHeight()
Gets the height of the image (also known as the canvas in WebP nomenclature).
|
| abstract int | getLoopCount()
Gets the number of loops to run the animation for.
|
| abstract int | getSizeInBytes()
Gets the size of bytes of the encoded image data (which is the data kept in memory for the image).
|
| abstract int | getWidth()
Gets the width of the image (also known as the canvas in WebP nomenclature).
|
|
Disposes the instance. This will free native resources held by this instance. Once called, other methods on this instance may throw. Note, the underlying native resources may not actually be freed until all associated instances of AnimatedImageFrame are disposed or finalized as well.
Returns whether renderFrame(int, int, Bitmap) supports scaling to arbitrary sizes or whether scaling must be done externally.
Gets the duration of the animated image.
Creates an AnimatedImageFrame at the specified index.
| frameNumber | the index of the frame |
AnimatedImageFrameGets the number of frames in the image.
Gets the duration of each frame of the animated image.
Gets the frame info for the specified frame.
| frameNumber | the frame to get the info for |
Gets the height of the image (also known as the canvas in WebP nomenclature).
Gets the number of loops to run the animation for.
Gets the size of bytes of the encoded image data (which is the data kept in memory for the image).
Gets the width of the image (also known as the canvas in WebP nomenclature).
+Generated by Doclava. +