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
|
/*
* Get specific object from a PDF by number. Prints the trailer dictionary if no number specified.
* For streams, prints out the decoded stream.
*
* Run as: go run pdf_get_object.go input.pdf [num]
*/
package main
import (
"fmt"
"os"
"strconv"
"github.com/unidoc/unipdf/v3/common/license"
"github.com/unidoc/unipdf/v3/core"
"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) < 2 {
fmt.Println("Syntax: go run pdf_get_object.go input.pdf [num]")
fmt.Println("If num is not specified, will display the trailer dictionary")
os.Exit(1)
}
inputPath := os.Args[1]
objNum := -1
if len(os.Args) > 2 {
num, err := strconv.Atoi(os.Args[2])
if err != nil {
fmt.Printf("Error: %v\n", err)
os.Exit(1)
}
objNum = num
}
fmt.Printf("Input file: %s\n", inputPath)
err := inspectPdfObject(inputPath, objNum)
if err != nil {
fmt.Printf("Error: %v\n", err)
os.Exit(1)
}
}
func inspectPdfObject(inputPath string, objNum int) error {
pdfReader, f, err := model.NewPdfReaderFromFile(inputPath, nil)
if err != nil {
return err
}
defer f.Close()
// Print trailer
if objNum == -1 {
trailer, err := pdfReader.GetTrailer()
if err != nil {
return err
}
fmt.Printf("Trailer: %s\n", trailer.String())
return nil
}
obj, err := pdfReader.GetIndirectObjectByNumber(objNum)
if err != nil {
return err
}
fmt.Printf("Object %d: %s\n", objNum, obj.String())
if stream, is := obj.(*core.PdfObjectStream); is {
decoded, err := core.DecodeStream(stream)
if err != nil {
return err
}
fmt.Printf("Decoded:\n%s", decoded)
} else if indObj, is := obj.(*core.PdfIndirectObject); is {
fmt.Printf("%T\n", indObj.PdfObject)
fmt.Printf("%s\n", indObj.PdfObject.String())
}
return nil
}
|