Giter Site home page Giter Site logo

pdf's Introduction

pdf

A simple PDF parser/serialiser for Go.

Getting Started

Example

Parsing

Parsing a PDF file into an Abstract-Syntax-Tree (AST).

Parsing a file
fileName := "sample.pdf"

ast, _ := pdf.ParseFile(fileName)
Parse a stream
f, err := os.Open(fileName)

if err != nil {
    fmt.Println(err)
    return
}

defer f.Close()

ast, _ := pdf.ParseStream(f)

Serialising

Serialising an AST into a string, suitable for writing to a file.

ast, _ := pdf.ParseFile("sample.pdf")

// ... manipulate the AST

serialised, _ := pdf.Serialise(ast)

f, err := os.Create("serialised.pdf")

if err != nil {
    fmt.Println(err)
    return
}

defer f.Close()

f.Write([]byte(serialised))

Finding a node

Finding a node by its ID

type Filter func(n ast.PdfNode) bool

// A recursive function to find a node based on some criteria
func findNode(filter Filter, node ast.PdfNode) ast.PdfNode {
	if filter(node) {
		return node
	}

	for _, child := range node.Children() {
		if found := findNode(filter, child); found != nil {
			return found
		}
	}

	return nil
}

// Find an indirect object with ID 27.
node := findNode(func(n ast.PdfNode) bool {
    if n.Type() == ast.INDIRECT_OBJECT {
        if n.(*ast.IndirectObjectNode).Id() == 27 {
            return true
        }
    }

    return false
}, ast)


// ... do something with node

pdf's People

Contributors

rgracey avatar

Stargazers

marko avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.