我的程序中有这么简单的代码,直到最新的GraphicsMagick更新才有效:
{
unsigned char *bitmap = new unsigned char[width*height*3];
/* code that fills bitmap with the width, height, and depth specifed *\
Image image(width,height,"BGR",CharPixel,bitmap); \\CODE SEGFAULTS HERE AT CONSTRUCTOR!
image.write(file);
delete[] bitmap;
}
现在看来,如果我使用Image构造函数,它将会段错误。看来,现在我不能用最新版本的Magick ++声明一个Image对象?