get One Frame Bitmap Image - Android Graphics

Android examples for Graphics:Bitmap Create

Description

get One Frame Bitmap Image

Demo Code


//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*/
}

Related Tutorials