diff options
Diffstat (limited to 'pdf.go')
-rw-r--r-- | pdf.go | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -10,8 +10,7 @@ import ( "io/ioutil" "os" - //"rescribe.xyz/gofpdf@addtextrenderingmode" - "rescribe.xyz/gofpdf" + "github.com/jung-kurt/gofpdf" "rescribe.xyz/utils/pkg/hocr" ) @@ -71,7 +70,7 @@ func (p *Fpdf) AddPage(imgpath, hocrpath string) error { _ = p.fpdf.RegisterImageOptions(imgpath, gofpdf.ImageOptions{}) p.fpdf.ImageOptions(imgpath, 0, 0, pxToPt(b.Dx()), pxToPt(b.Dy()), false, gofpdf.ImageOptions{}, 0, "") - p.fpdf.SetTextRenderingMode(gofpdf.TextRenderingModeInvisible) + p.fpdf.SetTextRenderingMode(3) for _, l := range h.Lines { for _, w := range l.Words { |