Aspose.word c++ 打开、修改、保存大文件时,直接崩溃。50M以上的文件

bool AsposeWords::removeWatermark(const QString& inputFile)
{
    try {
        auto doc = System::MakeObject<Document>(System::String(inputFile.toStdWString()));
        RemoveHeaderFooterWatermarkTotaly(doc);
        doc->Save(System::String(inputFile.toStdWString()));
        return true;
    } catch (System::Exception& sce) {
        qCritical() << "AsposeWords::removeWatermark System::Exception: " << QString::fromStdU16String(sce.ToString().ToU16Str());
    } catch (...) {
        qCritical() << "AsposeWords::removeWatermark Unknown Exception...";
    }
    return false;
}

大文件在MakeObject 创建doc的时候就崩溃掉了

@Gao_Fei 您能否将有问题的文档附在此处进行测试? 我们将检查该问题并为您提供更多信息。
另请注意,50MB 对于 MS Word 文档来说相当大。