在代碼 Dart 中以編程方式將 Word 轉換為 JPG。該 Dart 軟件庫旨在使用 REST API 將 Word 文檔轉換為各種文件格式。
將 Word 轉換為 JPG 的 API 允許開發人員 Dart 輕鬆地將 Word 文檔轉換為 JPG 圖像並利用這兩種文件格式。
將文檔格式從 Word 轉換為 JPG 是一項複雜的任務。所有 Word 到 JPG 格式的轉換都由我們的 Dart SDK 執行,同時保持源 Word 文檔的主要結構和邏輯內容。
Dart 庫是一個專業的軟件解決方案,用於在雲端在線轉換 Word 和 JPG 文件。該 SDK 為開發人員 Dart 提供了強大的功能和完美質量的 JPG 輸出。
以下以 Dart 語言使用 Conversion API 的代碼示例將幫助您快速入門。
import 'package:aspose_words_cloud/aspose_words_cloud.dart';
final config = Configuration("####-####-####-####-####", "##################");
final wordsApi = WordsApi(config);
final doc = (await File('Input.docx').readAsBytes()).buffer.asByteData();
final request = SplitDocumentOnlineRequest(doc, 'jpg', zipOutput: true);
final split = await wordsApi.splitDocumentOnline(request);
從 GitHub 克隆 Aspose.Words Cloud SDK for Dart 源代碼並在您的項目中使用它。將此依賴項添加到您的 pubspec.yaml: dependencies: aspose_words_cloud: 22.4.0
請按照這些 Instructions 快速獲取必要的安全憑證並訪問我們的 REST API。
請參閱 Repository Documentation 以查看詳細信息。