用于转换 Microsoft® 文字处理文件的开源 Go 库
通过免费的 GO API 将 Microsoft Word 处理文档转换为 PDF
Gotenberg Go 客户端入门
将 Gotenberg Go 客户端安装到项目中的推荐方法是使用 GitHub。请使用以下命令进行顺利安装。
通过 GitHub 安装 Gotenberg Go 客户端
$ go get -u github.com/thecodingmachine/gotenberg-go-client/v7
通过 Free Go API 将 DOCX 转换为 PDF
在 GO 中将文字处理转换为 PDF
- 使用 NewDocumentFromPath() 方法加载两个 DOCX 文件,并将文件名和文件路径作为参数传递
- 使用 gotenberg.NewOfficeRequest() 方法将两个文件转换为 PDF 并传递 doc 对象
- 保存 PDF 文档
通过免费的 GO API 将 DOCX 转换为 PDF
c := &gotenberg.Client{Hostname: "http://localhost:3000"}
doc, _ := gotenberg.NewDocumentFromPath("document.docx", "/path/to/file")
doc2, _ := gotenberg.NewDocumentFromPath("document2.docx", "/path/to/file")
req := gotenberg.NewOfficeRequest(doc, doc2)
dest := "result.pdf"
c.Store(req, dest)