七窗宇、結(jié)合系統(tǒng)源碼证芭,native實(shí)現(xiàn)gif圖片播放

一、Gif編碼相關(guān)知識

【gif格式圖片詳解】https://blog.csdn.net/wzy198852/article/details/17266507

二担映、所使用到的系統(tǒng)源碼文件

Giflib_source_code.png

三、代碼實(shí)現(xiàn)

GifHandler.java

/**
 * ==================================================================
 * Copyright (C) 2018 FMTech All Rights Reserved.
 *
 * @author Drew.Chiang
 * @version v1.0.0
 * @email chiangchuna@gmail.com
 * @create_date 2018/6/21 19:28
 * <p>
 * ==================================================================
 */

public class GifHandler {
    static {
        System.loadLibrary("native-lib");
    }

    private long gifAddr;

    public GifHandler(String path){
        gifAddr = loadGif(path);
    }

    public int getWidth(){
        return getWidth(gifAddr);
    }

    public int getHeight(){
        return getHeight(gifAddr);
    }

    public int updateFrame(Bitmap bitmap){
        return updateFrame(bitmap, gifAddr);
    }

    private native long loadGif(String path);

    public native int getWidth(long gifAddr);

    public native int getHeight(long gifAddr);

    public native int updateFrame(Bitmap bitmap, long gifAddr);

}

native-lib.cpp

#include <jni.h>
#include <string>
#include <malloc.h>
#include <string.h>
#include "gif_lib.h"
#include <android/log.h>
#include <android/bitmap.h>
#define  LOG_TAG  "GifLib"
#define  LOGE(...)  __android_log_print(ANDROID_LOG_ERROR,LOG_TAG,__VA_ARGS__)

#define  argb(a,r,g,b) ( ((a) & 0xff) << 24 ) | ( ((b) & 0xff) << 16 ) | ( ((g) & 0xff) << 8 ) | ((r) & 0xff)

typedef struct GifBean{
    int current_frame;
    int total_frame;
    int *delays;
}GifBean;

extern "C" {

void drawFrame(GifFileType *gifFileType, GifBean *gifBean, AndroidBitmapInfo bitmapInfo, void *pixels){

    SavedImage savedImage = gifFileType->SavedImages[gifBean->current_frame];

    GifImageDesc frameInfo = savedImage.ImageDesc;
    int* px = (int*)pixels;
    //
    int* line;

    //Index of pixel in bitmap
    int pointPixelIdx;
    GifByteType gifByteType;
    GifColorType gifColorType;

    /* The local color map */
    ColorMapObject* colorMapObject = frameInfo.ColorMap;
    //Offset to the real color pixel; stride:The number of byte per row;
    px = (int*)((char*)px + bitmapInfo.stride * frameInfo.Top);
    for(int y = frameInfo.Top; y < frameInfo.Top + frameInfo.Height; y++){
        line = px;
        for(int x = frameInfo.Left; x < frameInfo.Left + frameInfo.Width; x++){
            pointPixelIdx = (y - frameInfo.Top) * frameInfo.Width + (x - frameInfo.Left);
            //Can't use it directly, as it has been compressed.
            gifByteType = savedImage.RasterBits[pointPixelIdx];
            gifColorType = colorMapObject->Colors[gifByteType];
            //Now, it is true pixel color.
            line[x] = argb(255, gifColorType.Red, gifColorType.Green, gifColorType.Blue);
        }
        px = (int*)((char*)px + bitmapInfo.stride);
    }

}

JNIEXPORT jlong JNICALL
Java_com_fmtech_giflib_GifHandler_loadGif(JNIEnv *env, jobject instance, jstring path_) {
    const char *path = env->GetStringUTFChars(path_, 0);
    int error;
    /** Open a new GIF file for read, given by its name.Returns dynamically allocated GifFileType pointer which serves as the GIF
info record.*/
    GifFileType* gifFileType = DGifOpenFileName(path, &error);
    //Init gifFileType;
    DGifSlurp(gifFileType);
    GifBean *gifBean = (GifBean*) malloc(sizeof(GifBean));

    memset(gifBean, 0, sizeof(GifBean));
    //Like view.setTag(); used to store/cache data.
    gifFileType->UserData = gifBean;

    //ImageCount is total frames of gif, to alloc a size of ImageCount for array 'delays'.
    gifBean->delays = (int*)malloc(sizeof(int) * gifFileType->ImageCount);
    //Init delays
    memset(gifBean->delays, 0, sizeof(int) * gifFileType->ImageCount);
    gifBean->total_frame = gifFileType->ImageCount;

    ExtensionBlock* ext;
    for(int i = 0; i<gifFileType->ImageCount; ++i){
        SavedImage frame = gifFileType->SavedImages[i];
        for(int j = 0; j < frame.ExtensionBlockCount; ++j){
            /*Find the graphics control extension block (GIF89) */
            if(frame.ExtensionBlocks[j].Function == GRAPHICS_EXT_FUNC_CODE){
                ext = &frame.ExtensionBlocks[j];
                break;
            }
        }
        if(ext){
            //Bytes[2]存放第5個字節(jié)(高八位)叫潦,Bytes[1]存放第6個字節(jié)(低8位)蝇完。
            int frame_delay = 10 * (ext->Bytes[2]<< 8 | ext->Bytes[1]);
            gifBean->delays[i] = frame_delay;
        }
    }

    env->ReleaseStringUTFChars(path_, path);
    return (jlong)gifFileType;
}

JNIEXPORT jint JNICALL
Java_com_fmtech_giflib_GifHandler_getWidth(JNIEnv *env, jobject instance, jlong gifAddr) {
    GifFileType* gifFileType = (GifFileType*)gifAddr;
    return gifFileType->SWidth;
}

JNIEXPORT jint JNICALL
Java_com_fmtech_giflib_GifHandler_getHeight(JNIEnv *env, jobject instance, jlong gifAddr) {
    GifFileType* gifFileType = (GifFileType*) gifAddr;
    return gifFileType->SHeight;
}


JNIEXPORT jint JNICALL
Java_com_fmtech_giflib_GifHandler_updateFrame(JNIEnv *env, jobject instance, jobject bitmap,
                                              jlong gifAddr) {
    GifFileType *gifFileType = (GifFileType*)gifAddr;
    GifBean *gifBean = (GifBean*)gifFileType->UserData;

    //
    AndroidBitmapInfo bitmapInfo;
    void *pixels;
    AndroidBitmap_getInfo(env, bitmap, &bitmapInfo);
    //Given a java bitmap object, attempt to lock the pixel address.
    AndroidBitmap_lockPixels(env, bitmap, &pixels);

    drawFrame(gifFileType, gifBean, bitmapInfo, pixels);

    //Update current frame
    gifBean->current_frame += 1;

    if(gifBean->current_frame >= gifBean->total_frame - 1){
        gifBean->current_frame = 0;
    }
    AndroidBitmap_unlockPixels(env, bitmap);
    return gifBean->delays[gifBean->current_frame];
}

}

【相關(guān)源碼】https://github.com/ChiangC/NDK/tree/master/GifLib

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市矗蕊,隨后出現(xiàn)的幾起案子短蜕,更是在濱河造成了極大的恐慌,老刑警劉巖傻咖,帶你破解...
    沈念sama閱讀 206,311評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件朋魔,死亡現(xiàn)場離奇詭異,居然都是意外死亡卿操,警方通過查閱死者的電腦和手機(jī)警检,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,339評論 2 382
  • 文/潘曉璐 我一進(jìn)店門孙援,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人扇雕,你說我怎么就攤上這事拓售。” “怎么了镶奉?”我有些...
    開封第一講書人閱讀 152,671評論 0 342
  • 文/不壞的土叔 我叫張陵础淤,是天一觀的道長。 經(jīng)常有香客問我哨苛,道長鸽凶,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 55,252評論 1 279
  • 正文 為了忘掉前任建峭,我火速辦了婚禮玻侥,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘迹缀。我一直安慰自己使碾,他們只是感情好,可當(dāng)我...
    茶點(diǎn)故事閱讀 64,253評論 5 371
  • 文/花漫 我一把揭開白布祝懂。 她就那樣靜靜地躺著票摇,像睡著了一般。 火紅的嫁衣襯著肌膚如雪砚蓬。 梳的紋絲不亂的頭發(fā)上矢门,一...
    開封第一講書人閱讀 49,031評論 1 285
  • 那天,我揣著相機(jī)與錄音灰蛙,去河邊找鬼祟剔。 笑死,一個胖子當(dāng)著我的面吹牛摩梧,可吹牛的內(nèi)容都是我干的物延。 我是一名探鬼主播,決...
    沈念sama閱讀 38,340評論 3 399
  • 文/蒼蘭香墨 我猛地睜開眼仅父,長吁一口氣:“原來是場噩夢啊……” “哼叛薯!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起笙纤,我...
    開封第一講書人閱讀 36,973評論 0 259
  • 序言:老撾萬榮一對情侶失蹤耗溜,失蹤者是張志新(化名)和其女友劉穎,沒想到半個月后省容,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體抖拴,經(jīng)...
    沈念sama閱讀 43,466評論 1 300
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 35,937評論 2 323
  • 正文 我和宋清朗相戀三年腥椒,在試婚紗的時候發(fā)現(xiàn)自己被綠了阿宅。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片候衍。...
    茶點(diǎn)故事閱讀 38,039評論 1 333
  • 序言:一個原本活蹦亂跳的男人離奇死亡,死狀恐怖家夺,靈堂內(nèi)的尸體忽然破棺而出脱柱,到底是詐尸還是另有隱情,我是刑警寧澤拉馋,帶...
    沈念sama閱讀 33,701評論 4 323
  • 正文 年R本政府宣布榨为,位于F島的核電站,受9級特大地震影響煌茴,放射性物質(zhì)發(fā)生泄漏随闺。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,254評論 3 307
  • 文/蒙蒙 一蔓腐、第九天 我趴在偏房一處隱蔽的房頂上張望矩乐。 院中可真熱鬧源葫,春花似錦誊酌、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,259評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽欧漱。三九已至,卻和暖如春葬燎,著一層夾襖步出監(jiān)牢的瞬間误甚,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 31,485評論 1 262
  • 我被黑心中介騙來泰國打工谱净, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留窑邦,地道東北人。 一個月前我還...
    沈念sama閱讀 45,497評論 2 354
  • 正文 我出身青樓壕探,卻偏偏與公主長得像冈钦,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個殘疾皇子李请,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 42,786評論 2 345

推薦閱讀更多精彩內(nèi)容