Magick :: readImage返回异常系统找不到指定的文件(pdf文件)

时间:2015-02-04 15:55:40

标签: c++ visual-studio-2010 imagemagick

在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执行时的传递。

0 个答案:

没有答案