在代碼 C++ 中以編程方式將文件 文本 轉換為圖像 GIF 。 C++ 的這個軟件庫旨在使用 REST API 將文件 文本 轉換為各種文件格式。
將 文本 轉換為圖像的API 允許開發人員 C++ 輕鬆地將文檔 文本 轉換為圖像 GIF ,並利用文本和圖形文件格式。
將文檔格式從 文本 轉換為 GIF 是一項複雜的任務。所有 文本 到 GIF 格式的轉換都由我們的 C++ SDK 執行,同時保持源文檔 文本 的主要結構和邏輯內容。
C++ 庫是一個專業的軟件解決方案,用於在雲端在線轉換文件 文本, GIF 。此 SDK 為開發人員提供了強大的功能 C++ 和完美的質量輸出 GIF 。
以下以 C++ 語言使用 Conversion API 的代碼示例將幫助您快速入門。
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.txt"), std::istream::binary));
std::shared_ptr<requests::SplitDocumentOnlineRequest> request(
new requests::SplitDocumentOnlineRequest(
doc, std::make_shared<std::wstring>(L"gif"), std::make_shared<bool>(true)
)
);
auto split = wordsApi->splitDocumentOnline(request);
從 GitHub 克隆 Aspose.Words Cloud SDK for C++ 源代碼。您可以在 "How to use the SDK" 部分找到有關構建和配置 SDK 的詳細信息。
要快速獲取必要的安全憑證並訪問我們的 REST API,請按照文檔中的這些 Instructions 進行操作。
請參閱 Repository Documentation 以查看詳細信息。