Compress PDF or Word file in C++ SDK

Reduce document size using C++

Using the REST API in C++, developers can compress documents in DOC, DOCX, RTF, PDF, and other formats. With the given solution, the output will be a high quality file after compression.

View code snippet

Compress document in C++

Using our powerful C++ API, developers can compress files 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 file format or any available save format – DOCX, DOC, RTF, PDF, HTML and many others.

Reduce file size in C++

As mentioned, our C++ SDK allows you to programmatically reduce the size of a document in any supported format. For example, you can reduce the file size of PDF, DOCX, DOC, RTF, ODT, EPUB, HTML and other formats. And now you can try our powerful functionality and evaluate how to compress a document 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 a file C++ REST API: Word, PDF, GIF, ZIP

  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 document to compress
  5. Compress documents and images, clean unused information
  6. Select the output file format
  7. Get the result of the document compression as a separate file

C++ library to use document 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.

5%

Subscribe to Aspose Product Updates

Get monthly newsletters and offers directly delivered to your mailbox.

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