Using our powerful C++ API, developers can compress JPG 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 JPG or any available save format – DOCX, DOC, RTF, PDF, HTML and many others.
As mentioned, our C++ SDK allows you to programmatically reduce the size of JPG. And now you can try our powerful functionality and evaluate how to compress JPG in C++ with the following example:
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.jpg"), 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"jpg")
)
);
wordsApi->convertDocument(convertDocument);
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.
Refer to the Repository Documentation to see the details.
You can perform document compression for other file formats: