"adding links in gopdf" Code Answer's

You're definitely familiar with the best coding language Go that developers use to develop their projects and they get all their queries like "adding links in gopdf" answered properly. Developers are finding an appropriate answer about adding links in gopdf related to the Go coding language. By visiting this online portal developers get answers concerning Go codes question like adding links in gopdf. Enter your desired code related query in the search bar and get every piece of information about Go code related question on adding links in gopdf. 

adding links in gopdf

By Scary SwiftletScary Swiftlet on Dec 15, 2020
package main

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

func main()  {
	pdf := gopdf.GoPdf{}
	pdf.Start(gopdf.Config{ PageSize: *gopdf.PageSizeA4 }) //595.28, 841.89 = A4
	pdf.AddPage()
	err := pdf.AddTTFFont("times", "./test/res/times.ttf")
	if err != nil {
		log.Print(err.Error())
		return
	}

	err = pdf.SetFont("times", "", 14)
	if err != nil {
		log.Print(err.Error())
		return
	}

	pdf.SetX(30)
	pdf.SetY(40)
	pdf.Text("Link to example.com")
	pdf.AddExternalLink("http://example.com/", 27.5, 28, 125, 15)

	pdf.SetX(30)
	pdf.SetY(70)
	pdf.Text("Link to second page")
	pdf.AddInternalLink("anchor", 27.5, 58, 120, 15)

	pdf.AddPage()
	pdf.SetX(30)
	pdf.SetY(100)
	pdf.SetAnchor("anchor")
	pdf.Text("Anchor position")

	pdf.WritePdf("hello.tmp.pdf")

}

Source: github.com

Add Comment

-3

All those coders who are working on the Go based application and are stuck on adding links in gopdf can get a collection of related answers to their query. Programmers need to enter their query on adding links in gopdf related to Go code and they'll get their ambiguities clear immediately. On our webpage, there are tutorials about adding links in gopdf for the programmers working on Go code while coding their module. Coders are also allowed to rectify already present answers of adding links in gopdf while working on the Go language code. Developers can add up suggestions if they deem fit any other answer relating to "adding links in gopdf". Visit this developer's friendly online web community, CodeProZone, and get your queries like adding links in gopdf resolved professionally and stay updated to the latest Go updates. 

Go answers related to "adding links in gopdf"

View All Go queries

Go queries related to "adding links in gopdf"

Browse Other Code Languages

CodeProZone