page contents

golang解析pdf

分享一下,golang中如何操作PDF。

attachments-2021-09-bnCIj9ot61380e248021e.jpg

分享一下,golang中如何操作PDF。

PDF简介

The Portable Document Format (PDF) is a file format used to present documents in a manner independent of application software, hardware, and operating systems.[3] Each PDF file encapsulates a complete description of a fixed-layout flat document, including the text, fonts, graphics, and other information needed to display it.

pdf(Portable Document Format的简称,意为“便携式文档格式”),是由Adobe Systems用于与应用程序、操作系统、硬件无关的方式进行文件交换所发展出的文件格式。PDF文件以PostScript语言图象模型为基础,无论在哪种打印机上都可保证精确的颜色和准确的打印效果,即PDF会忠实地再现原稿的每一个字符、颜色以及图象。

rsc.io/pdf

github地址: 
https://github.com/rsc/pdf

Star: 202

文档地址: 
https://godoc.org/rsc.io/pdf

获取:

go get rsc.io/pdf
 
  • 1
  • 1

读取PDF文件,获取总页数

package main

import (
    "fmt"

    "rsc.io/pdf"
)

func main() {
    file, err := pdf.Open("go.pdf")
    if err != nil {
        panic(err)
    }
    fmt.Println(file.NumPage())
}

 
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16

读取某一页的内容

package main

import (
    "fmt"

    "rsc.io/pdf"
)

func main() {
    file, err := pdf.Open("test.pdf")
    if err != nil {
        panic(err)
    }
    fmt.Println(file.Page(2).Content())
}

 
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16

jung-kurt/gofpdf

注意:该库不支持中文!!!

github地址: 
https://github.com/jung-kurt/gofpdf

Star: 733

文档地址: 
https://godoc.org/github.com/jung-kurt/gofpdf

获取:

go get github.com/jung-kurt/gofpdf
 
  • 1
  • 1

生成PDF文档

package main

import (
    "fmt"

    "github.com/jung-kurt/gofpdf"
)

func main() {
    pdf := gofpdf.New("P", "mm", "A4", "")
    pdf.AddPage()
    pdf.SetFont("Arial", "B", 26)
    pdf.Cell(40, 10, "Hello PDF World")
    err := pdf.OutputFileAndClose("write_pdf.pdf")
    if err != nil {
        fmt.Println(err)
    }
}

 
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19

生成加密的PDF

package main

import (
    "fmt"

    "github.com/jung-kurt/gofpdf"
)

func main() {
    pdf := gofpdf.New("P", "mm", "A4", "")
    pdf.SetProtection(gofpdf.CnProtectPrint, "123", "abc")
    pdf.AddPage()
    pdf.SetFont("Arial", "", 12)
    pdf.Write(10, "You Must Enter the Password!!!")
    err := pdf.OutputFileAndClose("write_pdf_with_password.pdf")
    if err != nil {
        fmt.Println(err)
    }
}

 
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20

PDF中插入图片

package main

import (
    "fmt"

    "github.com/jung-kurt/gofpdf"
)

func main() {
    pdf := gofpdf.New("P", "mm", "A4", "")
    pdf.AddPage()
    pdf.SetFont("Arial", "", 11)
    pdf.Image("test.png", 10, 10, 30, 0, false, "", 0, "")
    pdf.Text(50, 20, "test.png")
    pdf.Image("test.gif", 10, 40, 30, 0, false, "", 0, "")
    pdf.Text(50, 50, "test.gif")
    pdf.Image("test.jpg", 10, 130, 30, 0, false, "", 0, "")
    pdf.Text(50, 140, "test.jpg")

    err := pdf.OutputFileAndClose("write_pdf_with_image.pdf")
    if err != nil {
        fmt.Println(err)
    }
}

 
  • 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
  • 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

PDF中增加链接、HTML

package main

import (
    "fmt"

    "github.com/jung-kurt/gofpdf"
)

func main() {
    pdf := gofpdf.New("P", "mm", "A4", "")
    pdf.AddPage()
    pdf.SetFont("Helvetica", "", 20)
    _, lineHt := pdf.GetFontSize()
    pdf.Write(lineHt, "To find out what's new in this tutorial, click ")
    pdf.SetFont("", "U", 0)
    link := pdf.AddLink()
    pdf.WriteLinkID(lineHt, "here", link)
    pdf.SetFont("", "", 0)
    // Second page: image link and basic HTML with link
    pdf.AddPage()
    pdf.SetLink(link, 0, -1)
    pdf.Image("test.png", 10, 12, 30, 0, false, "", 0, "http://blog.csdn.net/wangshubo1989?viewmode=contents")
    pdf.SetLeftMargin(45)
    pdf.SetFontSize(14)
    _, lineHt = pdf.GetFontSize()
    htmlStr := `You can now easily print text mixing different styles: <b>bold</b>, ` +
        `<i>italic</i>, <u>underlined</u>, or <b><i><u>all at once</u></i></b>!<br><br>` +
        `<center>You can also center text.</center>` +
        `<right>Or align it to the right.</right>` +
        `You can also insert links on text, such as ` +
        `<a href="http://www.fpdf.org">http://blog.csdn.net/wangshubo1989?viewmode=contents</a>, or on an image: click on the logo.`
    html := pdf.HTMLBasicNew()
    html.Write(lineHt, htmlStr)
    err := pdf.OutputFileAndClose("write_html.pdf")
    if err != nil {
        fmt.Println(err)
    }
}

 
  • 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
  • 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

signintech/gopdf

既然jung-kurt/gofpdf不支持中文,那么就介绍一个支持中文的signintech/gopdf。

github地址: 
https://github.com/signintech/gopdf

Star: 422

获取:

go get -u github.com/signintech/gopdf
 
  • 1
  • 1

生成PDF文件

为了炫酷一点,自己从网上下载一个字体。

package main

import (
    "log""github.com/signintech/gopdf"
)

func main() {

    pdf := gopdf.GoPdf{}
    pdf.Start(gopdf.Config{PageSize: gopdf.Rect{W: 595.28, H: 841.89}}) //595.28, 841.89 = A4
    pdf.AddPage()
    err := pdf.AddTTFFont("wts11", "TTENuoJ_0.ttf")
    if err != nil {
        log.Print(err.Error())
        return
    }

    err = pdf.SetFont("wts11", "", 14)
    if err != nil {
        log.Print(err.Error())
        return
    }
    pdf.Cell(nil, "我闭目在经殿的香雾中, 蓦然听见你颂经中的真言;")
    pdf.WritePdf("hello.pdf")

}

更多相关技术内容咨询欢迎前往并持续关注六星社区了解详情。

程序员编程交流QQ群:805358732

如果你想用Python开辟副业赚钱,但不熟悉爬虫与反爬虫技术,没有接单途径,也缺乏兼职经验
关注下方微信公众号:Python编程学习圈,获取价值999元全套Python入门到进阶的学习资料以及教程,还有Python技术交流群一起交流学习哦。

attachments-2022-06-uCBfNR6D62afdff1bb627.jpeg

  • 发表于 2021-09-08 09:13
  • 阅读 ( 988 )
  • 分类:Golang

你可能感兴趣的文章

相关问题

0 条评论

请先 登录 后评论
轩辕小不懂
轩辕小不懂

2403 篇文章

作家榜 »

  1. 轩辕小不懂 2403 文章
  2. 小柒 1470 文章
  3. Pack 1135 文章
  4. Nen 576 文章
  5. 王昭君 209 文章
  6. 文双 71 文章
  7. 小威 64 文章
  8. Cara 36 文章