Java tutorial
//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()); } }