Android examples for Graphics:Bitmap Create
get One Frame Bitmap Image
//package com.java2s; import android.graphics.Bitmap; public class Main { public static Bitmap getOneFrameImg(Bitmap source, int frameIndex, int totalCount) { int singleW = source.getWidth() / totalCount; return Bitmap.createBitmap(source, (frameIndex - 1) * singleW, 0, singleW, source.getHeight()); }/*from www . j a va 2 s. com*/ }