Compress Word in C++ SDK

Reduce Word size using C++

Using the REST API in C++, developers can compress Word programmatically. With the given solution, the output will be a high quality file after compression.

View code snippet

Compress Word in C++

Using our powerful C++ API, developers can compress Word to optimize content and output file size. Reducing file size occurs by cleaning up unused data and resources. You can also compress images to make the output file size even smaller.

The result of content optimization and compression can be saved in the original Word or any available save format – DOCX, DOC, RTF, PDF, HTML and many others.

Reduce Word file size in C++

As mentioned, our C++ SDK allows you to programmatically reduce the size of Word. And now you can try our powerful functionality and evaluate how to compress Word in C++ with the following example:

Upload a file you want to optimize/compress
Run code
Select the target format from the list
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);
Run code
  
Copy C++ code to the clipboard

How to compress Word C++ REST API

  1. Install Aspose.Words Cloud for C++
  2. Add a library reference (import the library) to your C++ project
  3. Configure API using your app keys
  4. Load the source Word to compress
  5. Compress Word, clean unused information
  6. Select the output file format
  7. Get the result of Word compression as a separate file

C++ library to use DOCX compression

Clone Aspose.Words Cloud SDK for C++ source code from GitHub. You can find detailed information on building and configuring the SDK in the "How to use the SDK" section.

To quickly get the necessary security credentials and access our REST API, please follow these Instructions in the documentation.

System Requirements

Refer to the Repository Documentation to see the details.

Other supported file formats

You can perform document compression for other file formats:

5%

Subscribe to Aspose Product Updates

Get monthly newsletters and offers directly delivered to your mailbox.

© Aspose Pty Ltd 2001-2024. All Rights Reserved.