在Visual Studio 2010中使用ImageMagick,readImage方法无法加载一个pdf文件,返回std :: exception。这是代码:
try
{
Magick::readImages( &imageList, "C:\\Users\\user\\Desktop\\doc.pdf" );
}
catch(std::exception &ex)
{
std::cout << ex.what()<< std::endl;
}
catch(...){
std::cout << "No chatched" << std::endl;
}
文件存在且路径格式正确。输出是:
PDFDelegateFailed `The system cannot find the file specified.
从cmd执行时的传递。