-
Notifications
You must be signed in to change notification settings - Fork 101
/
pdf_rotate.go
80 lines (66 loc) · 1.68 KB
/
pdf_rotate.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
/*
* Rotate pages in a PDF file using global flag instead of
* rotating each page one by one.
* Degrees needs to be a multiple of 90.
*
* Run as: go run pdf_rotate.go input.pdf <angle> output.pdf
* The angle is specified in degrees.
*/
package main
import (
"fmt"
"os"
"strconv"
"github.com/unidoc/unipdf/v3/common/license"
"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) < 4 {
fmt.Printf("Usage: go run pdf_rotate.go input.pdf <angle> output.pdf\n")
os.Exit(1)
}
inputPath := os.Args[1]
outputPath := os.Args[3]
degrees, err := strconv.ParseInt(os.Args[2], 10, 64)
if err != nil {
fmt.Printf("Invalid degrees: %v\n", err)
os.Exit(1)
}
if degrees%90 != 0 {
fmt.Printf("Degrees needs to be a multiple of 90\n")
os.Exit(1)
}
err = rotatePdf(inputPath, degrees, outputPath)
if err != nil {
fmt.Printf("Error: %v\n", err)
os.Exit(1)
}
fmt.Printf("Complete, see output file: %s\n", outputPath)
}
// Rotate all pages by degrees.
func rotatePdf(inputPath string, degrees int64, outputPath string) error {
pdfReader, f, err := model.NewPdfReaderFromFile(inputPath, nil)
if err != nil {
return err
}
defer f.Close()
pdfWriter, err := pdfReader.ToWriter(&model.ReaderToWriterOpts{})
if err != nil {
return nil
}
// Rotate all page degrees.
err = pdfWriter.SetRotation(degrees)
if err != nil {
return nil
}
pdfWriter.WriteToFile(outputPath)
return err
}