gofpdf
gofpdf copied to clipboard
A PDF document generator with high level support for text, drawing and images
AddUTF8Font appears to have the documentation copied from AddFont. I suggest the following replacement might be an improvement. ``` // AddUTF8Font imports a TrueType font with utf-8 symbols and makes...
For the generation of complex and many-paged documents, it may be useful to perform page generation concurrently. In the program [pdfdeck](https://github.com/ajstarks/deck/blob/master/cmd/pdfdeck/pdfdeck.go), I use github.com/jung-kurt/gofpdf, which I believe could perform better...
CID font not be supported after importing page from existed pdf
Add support for highlight annotation and implement indirect references for all annotations
Hello, Thank you for this fork! I am a freelancer, and I use this library for my clients, if you plan to maintain it I encourage you to allow a...
So I've encountered a problem when using gofpdf library. When importing pages when it reads the file it does not close it. Then I found out that the library can't...
Hi, I need to set some XMP Metadata but i am clueless of how to use this function? Can you give a short example of how to add additional metadata...
can‘t paste pdf which download from net on an exist pdf. this is the code: ``` package main import ( "bytes" "io" "io/ioutil" "net/http" "github.com/phpdave11/gofpdf" "github.com/phpdave11/gofpdf/contrib/gofpdi" ) func pdfDownload(url string)...
I think the SmallCap value defined in def (line 651) as 1
This PR fix a reading error from pdfcpu processing library concerning file attachments. Previously, the appearance stream was specified inline. Now an indirect object is used.