강력한 C++ API를 사용하여 개발자는 DOCX 을 압축하여 콘텐츠 및 출력 파일 크기를 최적화할 수 있습니다. 사용하지 않는 데이터와 리소스를 정리하여 파일 크기를 줄입니다. 또한 이미지를 압축하여 출력 파일 크기를 더 작게 만들 수도 있습니다.
콘텐츠 최적화 및 압축 결과는 원본 DOCX 또는 사용 가능한 모든 저장 형식(DOCX, DOC, RTF, PDF, HTML 등)으로 저장할 수 있습니다.
언급했듯이 C++ SDK를 사용하면 프로그래밍 방식으로 DOCX 크기를 줄일 수 있습니다. 이제 강력한 기능을 사용해 보고 다음 예제를 통해 C++ 에서 DOCX 을 압축하는 방법을 평가할 수 있습니다.
using namespace aspose::words::cloud;
auto config = std::make_shared<ApiConfiguration>(L"####-####-####-####-####",
L"##################");
auto wordsApi = std::make_shared<WordsApi>(config);
auto requestDocument = std::shared_ptr<std::istream>(
new std::ifstream(std::filesystem::path(L"Input.docx"), std::istream::binary));
auto requestCompressOptions = std::make_shared<aspose::words::cloud::models::CompressOptions>();
requestCompressOptions->setImagesQuality(std::make_shared<int32_t>(75));
requestCompressOptions->setImagesReduceSizeFactor(std::make_shared<int32_t>(1));
std::shared_ptr<requests::CompressDocumentOnlineRequest> compressDocumentRequest(
new requests::CompressDocumentOnlineRequest(
requestDocument, requestCompressOptions
)
);
auto compressDocument = wordsApi->compressDocumentOnline(compressDocumentRequest);
auto requestDocument = std::shared_ptr<std::istream>(
compressDocument->document->values.begin, std::istream::binary));
std::shared_ptr<requests::ConvertDocumentRequest> convertDocument(
new requests::ConvertDocumentRequest(
requestDocument, std::make_shared<std::wstring>(L"docx")
)
);
wordsApi->convertDocument(convertDocument);
GitHub에서 Aspose.Words Cloud SDK for C++ 복제합니다. "How to use the SDK" SDK 빌드 및 구성에 대한 자세한 정보를 찾을 수 있습니다.
필요한 보안 자격 증명을 빠르게 얻고 REST API에 액세스하려면 설명서의 Instructions 을 따르십시오.
자세한 내용은 Repository Documentation 를 참조하십시오.
다른 파일 형식에 대해 문서 압축을 수행할 수 있습니다.