Sử dụng C++ API mạnh mẽ của chúng tôi, các nhà phát triển có thể nén DOCX để tối ưu hóa nội dung và kích thước tệp đầu ra. Giảm kích thước tệp xảy ra bằng cách dọn dẹp dữ liệu và tài nguyên không sử dụng. Bạn cũng có thể nén hình ảnh để làm cho kích thước tệp đầu ra nhỏ hơn.
Kết quả của việc tối ưu hóa và nén nội dung có thể được lưu dưới dạng DOCX gốc hoặc bất kỳ định dạng lưu có sẵn nào - DOCX, DOC, RTF, PDF, HTML và nhiều định dạng khác.
Như đã đề cập, SDK C++ của chúng tôi cho phép bạn giảm kích thước DOCX theo chương trình. Và bây giờ bạn có thể thử chức năng mạnh mẽ của chúng tôi và đánh giá cách nén DOCX trong C++ với ví dụ sau:
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);
Sao Aspose.Words Cloud SDK for C++ từ GitHub. Bạn có thể tìm thông tin chi tiết về cách xây dựng và định cấu hình SDK trong phần "How to use the SDK".
Để nhanh chóng nhận được thông tin xác thực bảo mật cần thiết và truy cập REST API của chúng tôi, vui lòng làm theo các Instructions sau trong tài liệu.
Tham khảo Repository Documentation để xem chi tiết.