在代码 Go 中以编程方式将 DOC 转换为 JPG。该 Go 软件库旨在使用 REST API 将 DOC 文档转换为各种文件格式。
将 DOC 转换为 JPG 的 API 允许开发人员 Go 轻松地将 DOC 文档转换为 JPG 图像并利用这两种文件格式。
将文档格式从 DOC 转换为 JPG 是一项复杂的任务。所有 DOC 到 JPG 格式的转换都由我们的 Go SDK 执行,同时保持源 DOC 文档的主要结构和逻辑内容。
Go 库是一个专业的软件解决方案,用于在云端在线转换 DOC 和 JPG 文件。该 SDK 为开发人员 Go 提供了强大的功能和完美质量的 JPG 输出。
以下以 Go 语言使用 Conversion API 的代码示例将帮助您快速入门。
import (
"os"
"github.com/aspose-words-cloud/aspose-words-cloud-go/dev/api/models"
)
config, _ := models.NewConfiguration("config.json")
wordsApi, ctx, _ := api.CreateWordsApi(config)
doc, _ := os.Open("Input.doc")
options := map[string]interface{}{"zipOutput": true,}
request := &models.SplitDocumentOnlineRequest{
Document: doc,
Format: ToStringPointer("jpg"),
Optionals: options,
}
split = wordsApi.SplitDocumentOnline(ctx, request)
运行 go get -v github.com/aspose-words-cloud/aspose-words-cloud-go/2007/api 安装 Aspose.Words Cloud SDK for Go 。您可以从 "How to use SDK" 部分获得有关其他安装方法的大量有用信息。
从 GitHub 克隆 Aspose.Words Cloud SDK for Go 源代码并在您的项目中使用它。请按照这些 Instructions 快速获取必要的安全凭证并访问我们的 REST API。
请参阅 Repository Documentation 以查看详细信息。