CImg 在 Debug 模式下抛出异常,在 Release 模式下工作正常
CImg throws an exception in Debug mode, works fine in Release
我的程序是用 C++ 编写的。我使用 Visual Studio 2017.
我的代码编译并在发布模式下正确运行,但在调试模式下抛出异常:
Unhandled exception at 0x00007FF9A4EAD428 (ucrtbase.dll) in
MyAssemblyName.exe: An invalid parameter was passed to a function
that considers invalid parameters fatal.
这个异常是在img.assign()
函数中抛出的
CImg<unsigned char> img;
try {
img.assign(picPath.c_str());
}
catch (CImgException) {
// ...
}
在 CImg 中,这是正在执行的代码:
std::FILE *const nfile = file?file:cimg::fopen(filename,"rb");
struct jpeg_decompress_struct cinfo;
struct _cimg_error_mgr jerr;
cinfo.err = jpeg_std_error(&jerr.original);
jerr.original.error_exit = _cimg_jpeg_error_exit;
if (setjmp(jerr.setjmp_buffer)) { // JPEG error
if (!file) cimg::fclose(nfile);
throw CImgIOException(_cimg_instance
"load_jpeg(): Error message returned by libjpeg: %s.",
cimg_instance,jerr.message);
}
jpeg_create_decompress(&cinfo);
jpeg_stdio_src(&cinfo,nfile);
jpeg_read_header(&cinfo,TRUE);
jpeg_start_decompress(&cinfo);
执行jpeg_read_header()
时抛出异常。
为什么会这样?为什么只有 Debug 模式,没有 Release 模式?
我已经根据更新了jpeg库,问题消失了。
我的程序是用 C++ 编写的。我使用 Visual Studio 2017.
我的代码编译并在发布模式下正确运行,但在调试模式下抛出异常:
Unhandled exception at 0x00007FF9A4EAD428 (ucrtbase.dll) in MyAssemblyName.exe: An invalid parameter was passed to a function that considers invalid parameters fatal.
这个异常是在img.assign()
函数中抛出的
CImg<unsigned char> img;
try {
img.assign(picPath.c_str());
}
catch (CImgException) {
// ...
}
在 CImg 中,这是正在执行的代码:
std::FILE *const nfile = file?file:cimg::fopen(filename,"rb");
struct jpeg_decompress_struct cinfo;
struct _cimg_error_mgr jerr;
cinfo.err = jpeg_std_error(&jerr.original);
jerr.original.error_exit = _cimg_jpeg_error_exit;
if (setjmp(jerr.setjmp_buffer)) { // JPEG error
if (!file) cimg::fclose(nfile);
throw CImgIOException(_cimg_instance
"load_jpeg(): Error message returned by libjpeg: %s.",
cimg_instance,jerr.message);
}
jpeg_create_decompress(&cinfo);
jpeg_stdio_src(&cinfo,nfile);
jpeg_read_header(&cinfo,TRUE);
jpeg_start_decompress(&cinfo);
执行jpeg_read_header()
时抛出异常。
为什么会这样?为什么只有 Debug 模式,没有 Release 模式?
我已经根据