libwebp 解码 webp格式的图片或者动画【源码】

2021/10/1 11:40:43

本文主要是介绍libwebp 解码 webp格式的图片或者动画【源码】,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

#include <stdio.h>
#include <math.h>
#include <stdlib.h>
#include <fstream>
#include <opencv2/highgui/highgui.hpp>
#include <opencv2/imgproc/imgproc.hpp>
#include <webp/decode.h>
#include <webp/demux.h>
using namespace cv;
using namespace std;

#pragma comment( lib, "..\\3rd_party\\libwebp-master\\build\\Debug\\webp.lib" )
#pragma comment( lib, "..\\3rd_party\\libwebp-master\\build\\Debug\\webpdemux.lib" )

static std::vector<uchar> readFile(const char* filename)
{
    std::vector<uchar> bytes;
    std::ifstream input_file(filename, ios::binary);
    if (!input_file.is_open()) {
        return bytes;
    }
    //input_file.read()
    char byte;
    while (input_file.read(&byte, 1)) {
        bytes.push_back(byte);
    }
    return bytes;
}

int main()
{
    int ret = 0;
    int w, h;
    std::vector<uchar> bytes = readFile("./aaa.webp");
    //std::vector<uchar> bytes = readFile("./0.webp")
    WebPData wd = { bytes.data() , bytes.size()};
    struct WebPDemuxer* dmuxer = WebPDemux(&wd);
    int frame_idx = 0;
    WebPIterator iter;
    while (1) {
        
        ret = WebPDemuxGetFrame(dmuxer, frame_idx, &iter);
        uchar * decode_data = WebPDecodeBGRA(iter.fragment.bytes, iter.fragment.size, &w, &h);
        if (decode_data == NULL)
            break;
        cv::Mat src(h, w, CV_8UC4, decode_data);
        cv::imshow("dst", src);
        cv::waitKey(100);
        frame_idx++;
    }
    cv::waitKey(0);

    WebPDemuxDelete(dmuxer);
    getchar();
}

 



这篇关于libwebp 解码 webp格式的图片或者动画【源码】的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程