用于转换 Microsoft® PowerPoint 文件的开源 Go 库
通过免费GtAPI将Microsoft PowerPointPPT和PPTX的发言转换为PDF
Gotenberg Go 客户端入门
将 Gotenberg Go 客户端安装到项目中的推荐方法是使用 Github。请使用以下命令进行顺利安装。
通过 GitHub 安装 Gotenberg Go 客户端
$ go get -u github.com/thecodingmachine/gotenberg-go-client/v7
通过 Free Go API 将 PPTX 转换为 PDF
开源库 Gotenberg Go 客户端允许在单个函数中将一种或多种 Microsoft Presentation 文件格式转换为 PDF 文件格式。 API 使用 gotenberg.NewOfficeRequest() 方法加载新文件并接受文件名和文件路径作为参数。为了将您的 PowerPoint 文件转换为 PDF,您可以加载一个或多个文件并将其轻松转换为 PDF。以下代码片段演示了如何在 GO 中将 PPTX 转换为 PDF
在 GO 中将 PowerPoint 转换为 PDF
- 使用 NewDocumentFromPath() 方法加载两个 PPTx 文件,并将文件名和文件路径作为参数传递
- 使用 gotenberg.NewOfficeRequest() 方法将两个文件转换为 PDF 并传递 doc 对象
- 保存 PDF 文档
通过免费的 GO API 将 PPTX 转换为 PDF
c := &gotenberg.Client{Hostname: "http://localhost:3000"}
doc, _ := gotenberg.NewDocumentFromPath("document.pptx", "/path/to/file")
doc2, _ := gotenberg.NewDocumentFromPath("document2.pptx", "/path/to/file")
req := gotenberg.NewOfficeRequest(doc, doc2)
dest := "fileformat.pdf"
c.Store(req, dest)