forked from kevin2li/PDF-Guru
-
Notifications
You must be signed in to change notification settings - Fork 0
/
header_and_footer.go
106 lines (101 loc) · 2.91 KB
/
header_and_footer.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
package main
import "fmt"
func (a *App) AddPDFHeaderAndFooter(
inFile string,
outFile string,
header_left string,
header_center string,
header_right string,
footer_left string,
footer_center string,
footer_right string,
margin_bbox []float32,
unit string,
font_family string,
font_size int,
font_color string,
opacity float32,
pages string) error {
logger.Printf("inFile: %s, outFile: %s, header_left: %s, header_center: %s, header_right: %s, footer_left: %s, footer_center: %s, footer_right: %s, margin_bbox: %v, unit: %s, font_family: %s, font_size: %d, font_color: %s, opacity: %f, pages: %s\n", inFile, outFile, header_left, header_center, header_right, footer_left, footer_center, footer_right, margin_bbox, unit, font_family, font_size, font_color, opacity, pages)
args := []string{"header_footer", "--type", "add"}
if header_left != "" {
args = append(args, "--header-left", header_left)
}
if header_center != "" {
args = append(args, "--header-center", header_center)
}
if header_right != "" {
args = append(args, "--header-right", header_right)
}
if footer_left != "" {
args = append(args, "--footer-left", footer_left)
}
if footer_center != "" {
args = append(args, "--footer-center", footer_center)
}
if footer_right != "" {
args = append(args, "--footer-right", footer_right)
}
if len(margin_bbox) > 0 {
args = append(args, "--margin-bbox")
for _, v := range margin_bbox {
args = append(args, fmt.Sprintf("%f", v))
}
}
if unit != "" {
args = append(args, "--unit", unit)
}
if font_family != "" {
args = append(args, "--font-family", font_family)
}
if font_size != 0 {
args = append(args, "--font-size", fmt.Sprintf("%d", font_size))
}
if font_color != "" {
args = append(args, "--font-color", font_color)
}
if opacity != 0 {
args = append(args, "--opacity", fmt.Sprintf("%f", opacity))
}
if pages != "" {
args = append(args, "--page-range", pages)
}
if outFile != "" {
args = append(args, "-o", outFile)
}
args = append(args, inFile)
logger.Println(args)
return a.cmdRunner(args, "pdf")
}
func (a *App) RemovePDFHeaderAndFooter(
inFile string,
outFile string,
margin_bbox []float32,
remove_list []string,
unit string,
pages string) error {
logger.Printf("inFile: %s, outFile: %s, margin_bbox: %v, remove_list: %v, unit: %s, pages: %s\n", inFile, outFile, margin_bbox, remove_list, unit, pages)
args := []string{"header_footer", "--type", "remove"}
if len(margin_bbox) > 0 {
args = append(args, "--margin-bbox")
for _, v := range margin_bbox {
args = append(args, fmt.Sprintf("%f", v))
}
}
if len(remove_list) > 0 {
args = append(args, "--remove")
args = append(args, remove_list...)
}
if unit != "" {
args = append(args, "--unit", unit)
}
if pages != "" {
args = append(args, "--page-range", pages)
}
if outFile != "" {
args = append(args, "-o", outFile)
}
args = append(args, inFile)
logger.Println(args)
return a.cmdRunner(args, "pdf")
}