-
Notifications
You must be signed in to change notification settings - Fork 102
/
Copy pathpdf_add_image_to_page.go
143 lines (123 loc) · 3.92 KB
/
pdf_add_image_to_page.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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
/*
* Insert an image to a PDF file.
*
* Adds image to a specific page of a PDF. xPos and yPos define the upper left corner of the image location, and width
* is the width of the image in PDF coordinates (height/width ratio is maintained).
*
* Example go run pdf_add_image_to_page.go /tmp/input.pdf 1 /tmp/image.jpg 0 0 100 /tmp/output.pdf
* adds the image to the upper left corner of the page (0,0). The width is 100 (typical page width 612 with defaults).
*
* Syntax: go run pdf_add_image_to_page.go input.pdf <page> image.jpg <xpos> <ypos> <width> output.pdf
*/
package main
import (
"fmt"
"os"
"strconv"
"github.com/unidoc/unipdf/v3/common/license"
"github.com/unidoc/unipdf/v3/core"
"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 # 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) < 8 {
fmt.Printf("Usage: go run pdf_add_image_to_page.go input.pdf <page> image.jpg <xpos> <ypos> <width> output.pdf\n")
os.Exit(1)
}
inputPath := os.Args[1]
pageNumStr := os.Args[2]
imagePath := os.Args[3]
xPos, err := strconv.ParseFloat(os.Args[4], 64)
if err != nil {
fmt.Printf("Error: %v\n", err)
os.Exit(1)
}
yPos, err := strconv.ParseFloat(os.Args[5], 64)
if err != nil {
fmt.Printf("Error: %v\n", err)
os.Exit(1)
}
iwidth, err := strconv.ParseFloat(os.Args[6], 64)
if err != nil {
fmt.Printf("Error: %v\n", err)
os.Exit(1)
}
outputPath := os.Args[7]
fmt.Printf("xPos: %d, yPos: %d\n", xPos, yPos)
pageNum, err := strconv.Atoi(pageNumStr)
if err != nil {
fmt.Printf("Error: %v\n", err)
os.Exit(1)
}
err = addImageToPdf(inputPath, outputPath, imagePath, pageNum, xPos, yPos, iwidth)
if err != nil {
fmt.Printf("Error: %v\n", err)
os.Exit(1)
}
fmt.Printf("Complete, see output file: %s\n", outputPath)
}
// Add image to a specific page of a PDF. xPos and yPos define the upper left corner of the image location, and iwidth
// is the width of the image in PDF document dimensions (height/width ratio is maintained).
func addImageToPdf(inputPath string, outputPath string, imagePath string, pageNum int, xPos float64, yPos float64, iwidth float64) error {
c := creator.New()
// Prepare the image.
img, err := c.NewImageFromFile(imagePath)
if err != nil {
return err
}
img.ScaleToWidth(iwidth)
img.SetPos(xPos, yPos)
// Optionally, set an encoder for the image. If none is specified, the
// encoder defaults to core.FlateEncoder, which applies lossless compression
// to the image stream. However, core.FlateEncoder tends to produce large
// image streams which results in large output file sizes.
// However, the encoder can be changed to core.DCTEncoder, which applies
// lossy compression (this type of compression is used by JPEG images) in
// order to reduce the output file size.
encoder := core.NewDCTEncoder()
// The default quality is 75. There is not much difference in the image
// quality between 75 and 100 but the size difference when compressing the
// image stream is significant so setting quality to 100 is not recommended.
// encoder.Quality = 80
img.SetEncoder(encoder)
// Read the input pdf file.
f, err := os.Open(inputPath)
if err != nil {
return err
}
defer f.Close()
pdfReader, err := model.NewPdfReader(f)
if err != nil {
return err
}
numPages, err := pdfReader.GetNumPages()
if err != nil {
return err
}
// Load the pages.
for i := 0; i < numPages; i++ {
page, err := pdfReader.GetPage(i + 1)
if err != nil {
return err
}
// Add the page.
err = c.AddPage(page)
if err != nil {
return err
}
// If the specified page, or -1, apply the image to the page.
if i+1 == pageNum || pageNum == -1 {
_ = c.Draw(img)
}
}
err = c.WriteToFile(outputPath)
return err
}