Skip to content

Commit

Permalink
Support multiple pages
Browse files Browse the repository at this point in the history
Signed-off-by: Glenn Lewis <6598971+gmlewis@users.noreply.github.com>
  • Loading branch information
gmlewis committed Aug 23, 2024
1 parent 6016211 commit 408cb23
Showing 1 changed file with 19 additions and 7 deletions.
26 changes: 19 additions & 7 deletions examples/make-address-labels/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ package main
import (
_ "embed"
"flag"
"fmt"
"log"
"os"
"path/filepath"
Expand All @@ -46,6 +47,7 @@ const (
labelHeightMM = 25
numLabelsX = 3
numLabelsY = 10
labelsPerPage = numLabelsX * numLabelsY
font1Family = "Balsamiq Sans"
)

Expand All @@ -70,26 +72,36 @@ func process(filename string) {
must(err)

addresses := strings.Split(string(buf), "\n\n")
log.Printf("Got %v addresses from %v", len(addresses), filename)
totalPages := 1 + (len(addresses)-1)/(labelsPerPage)
log.Printf("Got %v addresses from %v - printing %v pages", len(addresses), filename, totalPages)

p := newPage()
_, lineHeight1 := p.GetFontSize()
pageNum := 1

for i, label := range addresses {
nx, ny := i%numLabelsX, i/numLabelsX
labelIndex := i % labelsPerPage
nx, ny := labelIndex%numLabelsX, labelIndex/numLabelsX
x := pdfXMarginMM + float64(nx)*(widthMM-pdfXMarginMM)/numLabelsX
y := 2*lineHeight1 + float64(ny)*(heightMM-pdfYMarginMM)/numLabelsY
lines := strings.Split(label, "\n")
for j, line := range lines {
p.SetXY(x, y+(lineHeight1+1.0)*float64(j))
// log.Printf("(%v,%v)(%v,%v): %q", nx, ny, x, y, line)
p.CellFormat(1, lineHeight1+10.0, line, "", 2, "AL", false, 0, "")
}
}

pdfFilename := filepath.Join(filepath.Dir(filename), filepath.Base(filename)+".pdf")
must(p.OutputFileAndClose(pdfFilename))
log.Printf("Wrote %v", pdfFilename)
if i == len(addresses)-1 || i%labelsPerPage == labelsPerPage-1 {
outBaseName := filepath.Join(filepath.Dir(filename), filepath.Base(filename))
pdfFilename := outBaseName + ".pdf"
if totalPages > 1 {
pdfFilename = fmt.Sprintf("%v-page-%v-of-%v.pdf", outBaseName, pageNum, totalPages)
}
must(p.OutputFileAndClose(pdfFilename))
log.Printf("Wrote %v", pdfFilename)
pageNum++
p = newPage()
}
}
}

func newPage() fpdf.Pdf {
Expand Down

0 comments on commit 408cb23

Please sign in to comment.