-
Notifications
You must be signed in to change notification settings - Fork 104
/
Copy pathpdf_4up.go
115 lines (95 loc) · 2.43 KB
/
pdf_4up.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
/*
* Outputs multiple pages (4) per page to an output PDF from an input PDF.
* Showcases page templating by loading pages as Blocks and manipulating with the creator package.
*
* Run as: go run pdf_4up.go <input.pdf> <output.pdf>
*/
package main
import (
"fmt"
"os"
"github.com/unidoc/unipdf/v3/common/license"
"github.com/unidoc/unipdf/v3/creator"
"github.com/unidoc/unipdf/v3/model"
)
func init() {
// Make sure to load your metered License API key prior to using the library.
// If you need a key, you can sign up and create a free one at https://cloud.unidoc.io
err := license.SetMeteredKey(os.Getenv(`UNIDOC_LICENSE_API_KEY`))
if err != nil {
panic(err)
}
}
func main() {
if len(os.Args) < 3 {
fmt.Printf("Usage: go run pdf_4up.go <input.pdf> <output.pdf>\n")
os.Exit(1)
}
inputPath := os.Args[1]
outputPath := os.Args[2]
err := multiplePagesPerPage(inputPath, outputPath)
if err != nil {
fmt.Printf("Error: %v\n", err)
os.Exit(1)
}
fmt.Printf("Complete, see output file: %s\n", outputPath)
}
// Load an input PDF and output as n-pages per page in the output.
func multiplePagesPerPage(inputPath, outputPath string) error {
pdfReader, f, err := model.NewPdfReaderFromFile(inputPath, nil)
if err != nil {
return err
}
defer f.Close()
numPages, err := pdfReader.GetNumPages()
if err != nil {
return err
}
c := creator.New()
for i := 0; i < numPages; i++ {
pageNum := i + 1
page, err := pdfReader.GetPage(pageNum)
if err != nil {
return err
}
block, err := creator.NewBlockFromPage(page)
if err != nil {
return err
}
pos := i % 4
if pos == 0 {
c.NewPage()
}
pageWidth := c.Context().PageWidth
pageHeight := c.Context().PageHeight
block.ScaleToWidth(0.3 * pageWidth)
var xPos, yPos float64
switch pos {
case 0:
xPos, yPos = 0.1*pageWidth, 0.2*pageHeight
case 1:
xPos, yPos = 0.6*pageWidth, 0.2*pageHeight
case 2:
xPos, yPos = 0.1*pageWidth, 0.6*pageHeight
case 3:
xPos, yPos = 0.6*pageWidth, 0.6*pageHeight
}
block.SetPos(xPos, yPos)
blockWidth, blockHeight := block.RotatedSize()
dx := blockWidth - block.Width()
dy := blockHeight - block.Height()
rect := c.NewRectangle(xPos-dx/2, yPos-dy/2, blockWidth, blockHeight)
rect.SetBorderWidth(1.0)
rect.SetBorderColor(creator.ColorBlack)
err = c.Draw(block)
if err != nil {
return err
}
err = c.Draw(rect)
if err != nil {
return err
}
}
err = c.WriteToFile(outputPath)
return err
}