如何使用visual studio C ++将jpeg字节数组转换为位图字节数组

时间:2014-08-25 10:33:18

标签: c++ image visual-studio-2013

我已经从相机处理了一个jpeg字节数组。现在我需要使用visual studio C ++将这个jpeg字节数组转换为位图字节数组

1 个答案:

答案 0 :(得分:0)

你需要一个图书馆。例如。 jpeg-compressor。使用jpeg-compressor,"转换"位图很简单:

#include "jpeg-compressor/jpgd.h"

int width = 0, height = 0, actual_comps = 0;
jpgd::decompress_jpeg_image_from_memory(
    static_cast<unsigned char*>(myJPEGdata), myJPEGdataLength,
    &width, &height, &actual_comps, 3 );