Skip to content

livebranch/gotenberg-go-client

This branch is up to date with thecodingmachine/gotenberg-go-client:master.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

968713b · Aug 22, 2021

History

35 Commits
Mar 15, 2019
Dec 10, 2019
Mar 15, 2019
Mar 15, 2019
Mar 15, 2019
Dec 10, 2019
Aug 22, 2021
Feb 1, 2020
Jun 14, 2021
Mar 15, 2019
Dec 10, 2019
Dec 10, 2019
Dec 10, 2019
Dec 16, 2019
Feb 1, 2020
Dec 16, 2019
Dec 10, 2019
Dec 10, 2019
Dec 10, 2019
Dec 10, 2019
Dec 10, 2019
Dec 16, 2019
Dec 10, 2019

Repository files navigation

⚠️ Not working for Gotenberg >= 7 ⚠️

Gotenberg Go client

A simple Go client for interacting with a Gotenberg API.

Install

$ go get -u github.com/thecodingmachine/gotenberg-go-client/v7

Usage

import (
    "time"
    "net/http"

    "github.com/thecodingmachine/gotenberg-go-client/v7"
)

// create the client.
client := &gotenberg.Client{Hostname: "http://localhost:3000"}
// ... or use your own *http.Client.
httpClient := &http.Client{
    Timeout: time.Duration(5) * time.Second,
}
client := &gotenberg.Client{Hostname: "http://localhost:3000", HTTPClient: httpClient}

// prepare the files required for your conversion.

// from a path.
index, _ := gotenberg.NewDocumentFromPath("index.html", "/path/to/file")
// ... or from a string.
index, _ := gotenberg.NewDocumentFromString("index.html", "<html>Foo</html>")
// ... or from bytes.
index, _ := gotenberg.NewDocumentFromBytes("index.html", []byte("<html>Foo</html>"))

header, _ := gotenberg.NewDocumentFromPath("header.html", "/path/to/file")
footer, _ := gotenberg.NewDocumentFromPath("footer.html", "/path/to/file")
style, _ := gotenberg.NewDocumentFromPath("style.css", "/path/to/file")
img, _ := gotenberg.NewDocumentFromPath("img.png", "/path/to/file")

req := gotenberg.NewHTMLRequest(index)
req.Header(header)
req.Footer(footer)
req.Assets(style, img)
req.PaperSize(gotenberg.A4)
req.Margins(gotenberg.NoMargins)
req.Scale(0.75)

// store method allows you to... store the resulting PDF in a particular destination.
client.Store(req, "path/you/want/the/pdf/to/be/stored.pdf")

// if you wish to redirect the response directly to the browser, you may also use:
resp, _ := client.Post(req)

For more complete usages, head to the documentation.

Badges

Travis CI GoDoc Go Report Card

About

Go client for the Gotenberg API

Resources

License

Code of conduct

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Go 89.8%
  • Dockerfile 7.2%
  • Makefile 2.4%
  • Shell 0.6%