/* * Copyright (c) 2015-present, Facebook, Inc. * All rights reserved. * * This source code is licensed under the BSD-style license found in the * LICENSE file in the root directory of this source tree. An additional grant * of patent rights can be found in the PATENTS file in the same directory. */ package com.facebook.imagepipeline.animated.base; /** * Common interface for an animated image. */ public interface AnimatedImage { /** * 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 {@link AnimatedImageFrame} are disposed or * finalized as well. */ void dispose(); /** * Gets the width of the image (also known as the canvas in WebP nomenclature). * * @return the width of the image */ int getWidth(); /** * Gets the height of the image (also known as the canvas in WebP nomenclature). * * @return the height of the image */ int getHeight(); /** * Gets the number of frames in the image. * * @return the number of frames in the image */ int getFrameCount(); /** * Gets the duration of the animated image. * * @return the duration of the animated image in milliseconds */ int getDuration(); /** * Gets the duration of each frame of the animated image. * * @return an array that is the size of the number of frames containing the duration of each frame * in milliseconds */ int[] getFrameDurations(); /** * Gets the number of loops to run the animation for. * * @return the number of loops, or 0 to indicate infinite */ int getLoopCount(); /** * Creates an {@link AnimatedImageFrame} at the specified index. * * @param frameNumber the index of the frame * @return a newly created {@link AnimatedImageFrame} */ AnimatedImageFrame getFrame(int frameNumber); /** * Returns whether {@link AnimatedImageFrame#renderFrame} supports scaling to arbitrary * sizes or whether scaling must be done externally. * * @return whether rendering supports scaling */ boolean doesRenderSupportScaling(); /** * Gets the size of bytes of the encoded image data (which is the data kept in memory for the * image). * * @return the size in bytes of the encoded image data */ int getSizeInBytes(); /** * Gets the frame info for the specified frame. * * @param frameNumber the frame to get the info for * @return the frame info */ AnimatedDrawableFrameInfo getFrameInfo(int frameNumber); }