Skip to content
This repository has been archived by the owner on Jan 15, 2019. It is now read-only.

Latest commit

 

History

History
37 lines (21 loc) · 1002 Bytes

README.md

File metadata and controls

37 lines (21 loc) · 1002 Bytes

go-qpdf

GoDoc

Simple Go bindings for qpdf C / C++ API; mostly for linearization.

I would not recommend using this on production. I only worked on it to experiment with cgo, and I do not plan on maintaining it very often. Contributions are nevertheless, welcomed.

Dependencies

To build, and run the package, you must have libqpdf installed.

On Debian systems, this can be achieved using apt-get install libqpdf-dev.

Usage

  1. Download, and install go-qpdf/qpdf:

    go get github.com/MrSaints/go-qpdf/qpdf
  2. Import the package into your code:

    import "github.com/MrSaints/go-qpdf/qpdf"

View the GoDoc, examples or code for more information.