forked from signintech/gopdf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
page_obj.go
100 lines (89 loc) · 2.53 KB
/
page_obj.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
package gopdf
import (
"fmt"
"io"
"strings"
)
//PageObj pdf page object
type PageObj struct { //impl IObj
Contents string
ResourcesRelate string
pageOption PageOption
Links []linkOption
getRoot func() *GoPdf
}
func (p *PageObj) init(funcGetRoot func() *GoPdf) {
p.getRoot = funcGetRoot
p.Links = make([]linkOption, 0)
}
func (p *PageObj) setOption(opt PageOption) {
p.pageOption = opt
}
func (p *PageObj) write(w io.Writer, objID int) error {
io.WriteString(w, "<<\n")
fmt.Fprintf(w, " /Type /%s\n", p.getType())
io.WriteString(w, " /Parent 2 0 R\n")
fmt.Fprintf(w, " /Resources %s\n", p.ResourcesRelate)
var err error
gp := p.getRoot()
if len(p.Links) > 0 {
io.WriteString(w, " /Annots [")
for _, l := range p.Links {
if l.url != "" {
err = p.writeExternalLink(w, l, objID)
} else {
err = p.writeInternalLink(w, l, gp.anchors)
}
if err != nil {
return err
}
}
io.WriteString(w, "]\n")
}
/*me.buffer.WriteString(" /Font <<\n")
i := 0
max := len(me.Realtes)
for i < max {
realte := me.Realtes[i]
me.buffer.WriteString(fmt.Sprintf(" /F%d %d 0 R\n",realte.CountOfFont + 1, realte.IndexOfObj + 1))
i++
}
me.buffer.WriteString(" >>\n")*/
//me.buffer.WriteString(" >>\n")
fmt.Fprintf(w, " /Contents %s\n", p.Contents) //sample Contents 8 0 R
if !p.pageOption.isEmpty() {
fmt.Fprintf(w, " /MediaBox [ 0 0 %0.2f %0.2f ]\n", p.pageOption.PageSize.W, p.pageOption.PageSize.H)
}
io.WriteString(w, ">>\n")
return nil
}
func (p *PageObj) writeExternalLink(w io.Writer, l linkOption, objID int) error {
protection := p.getRoot().protection()
url := l.url
if protection != nil {
tmp, err := rc4Cip(protection.objectkey(objID), []byte(url))
if err != nil {
return err
}
url = string(tmp)
}
url = strings.Replace(url, "\\", "\\\\", -1)
url = strings.Replace(url, "(", "\\(", -1)
url = strings.Replace(url, ")", "\\)", -1)
url = strings.Replace(url, "\r", "\\r", -1)
_, err := fmt.Fprintf(w, "<</Type /Annot /Subtype /Link /Rect [%.2f %.2f %.2f %.2f] /Border [0 0 0] /A <</S /URI /URI (%s)>>>>",
l.x, l.y, l.x+l.w, l.y-l.h, url)
return err
}
func (p *PageObj) writeInternalLink(w io.Writer, l linkOption, anchors map[string]anchorOption) error {
a, ok := anchors[l.anchor]
if !ok {
return nil
}
_, err := fmt.Fprintf(w, "<</Type /Annot /Subtype /Link /Rect [%.2f %.2f %.2f %.2f] /Border [0 0 0] /Dest [%d 0 R /XYZ 0 %.2f null]>>",
l.x, l.y, l.x+l.w, l.y-l.h, a.page+1, a.y)
return err
}
func (p *PageObj) getType() string {
return "Page"
}