Use File Conversion REST API to create customized document workflows in C++. This is a powerful software solution to convert Word, PDF, Web documents and images using C++.
Convert a document from one format to another in C++. This C++ library is designed to convert files between a wide variety of file formats using REST API.
The API for File Format is used to solve software diversity and compatibility issues. Different software products offer different features and tools to users. As for users, they often want the capabilities of several products at the same time. Format conversion Conversion allows users to transparently convert data from one format to another and easily take advantage of different software products.
Converting document formats is a complex task that can involve intermediate export/import procedures when changing from one file format to another. All data transitions are performed by our C++ SDK, while maintaining the main structural and logical content of the source document.
Our C++ library is a professional solution for converting file formats. It gives you powerful functionality and perfect quality output.
The following C++ example of using the Conversion API will get you started quickly.
using namespace aspose::words::cloud;
auto config = std::make_shared<ApiConfiguration>(L"####-####-####-####-####",
L"##################");
auto wordsApi = std::make_shared<WordsApi>(config);
auto doc = std::shared_ptr<std::istream>(new std::ifstream(
std::filesystem::path(L"Input.docx"), std::istream::binary));
std::shared_ptr<requests::ConvertDocumentRequest> request(
new requests::ConvertDocumentRequest(
doc, std::make_shared<std::wstring>(L"pdf")
)
);
auto convert = wordsApi->convertDocument(request);
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.