将BLOB读入图像时出现Magick ++错误

时间:2015-03-28 19:18:52

标签: c++ magick++

我正在尝试使用Magick ++库将原始像素数据中的图像导出为RGBA PNG。

但是,当我试图运行它时,我收到一个奇怪的错误:

terminate called after throwing an instance of 'Magick::ErrorCorruptImage'
  what():  test: unexpected end-of-file `': No such file or directory @ error/rgb.c/ReadRGBImage/229
Aborted

这是相关的代码部分(我省略了填充像素向量,但这并没有改变任何东西):

#include <iostream>
#include <vector>
#include <ImageMagick/Magick++.h>

using namespace std;

int main(int argc, char *argv[]) {
    Magick::InitializeMagick(*argv);
    int rres, ires;
    cin >> rres >> ires;
    //RGBA
    //rres: horiz. resolution, ires: vert. resolution
    vector<unsigned char> image(rres * ires * 4);
    Magick::Blob blob(&image[0], rres*ires*4);
    Magick::Image img;
    img.size(to_string(rres) + "x" + to_string(ires));
    img.magick("RGBA");
    img.read(blob);
    img.write("out.png");
}

编译:

g++ --std=c++11 -O0 -g3 -ggdb3 -D_GLIBCXX_DEBUG -Wall test.cpp -o test `Magick++-config --cppflags --cxxflags --ldflags --libs`

1 个答案:

答案 0 :(得分:1)

如果您使用的是ImageMagick的Q8版本,则示例有效。但似乎您使用的是ImageMagick的Q16版本。后者使用每像素16位通道。您正在使用向量&lt; unsigned char&gt; ,它只有8位。我建议你切换到 vector&lt; unsigned short&gt; 或使用当前大小的两倍的 vector&lt; unsigned char&gt; 。如果每个像素通道不需要16位,也可以切换到ImageMagick的Q8版本。