Skip to content

Commit

Permalink
description
Browse files Browse the repository at this point in the history
  • Loading branch information
mazekh committed Apr 9, 2024
1 parent 1ec9aff commit bf8b5f4
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

A simple Go library which enables reading PDF files.

This repository contains merged code from https://github.com/rsc/pdf and https://github.com/ledongthuc/pdf and https://github.com/dslipak/pdf.
This repository contains merged code from https://github.com/rsc/pdf and https://github.com/ledongthuc/pdf and https://github.com/dslipak/pdf.
Added bugfixs and stabilize error handling.

Features
Expand Down Expand Up @@ -38,6 +38,9 @@ import (

func main() {

testFile := "./testdata/story_Word2019-2312-1712620132_SaveAs-Standard-PDFA__pdf17_trailer.pdf"

// open file
fmt.Println(". open testFile = " + testFile)
f, err := Open(testFile)
if err != nil {
Expand Down Expand Up @@ -90,7 +93,7 @@ func main() {
fmt.Println(verdicts[i])
}

// close
// close file
f.Close()
}
```

0 comments on commit bf8b5f4

Please sign in to comment.