本页内容
应用 License
在您的项目中使用 ComPDFKit Conversion SDK 的类和方法之前,您需要先应用 License(许可证密钥)。如果您没有许可证密钥,欢迎联系ComPDFKit 团队获取许可证。
c++
// 引入头文件。
#include "compdfkit_conversion.h"
// 引入命名空间。
using namespace compdfkit;
using namespace common;
using namespace conversion;
// 验证 license。
const char* license = " ";
ErrorCode code = LibraryManager::LicenseVerify(license, false, "device_id", "app_id");
if (code != ErrorCode::Success) {
return false;
}
// 初始化转档资源。
const char* resource_path = " ";
LibraryManager::Initialize(resource_path);