當前位置: 首頁>>代碼示例>>Golang>>正文


Golang gofpdf.Fpdf類代碼示例

本文整理匯總了Golang中github.com/jung-kurt/gofpdf.Fpdf的典型用法代碼示例。如果您正苦於以下問題:Golang Fpdf類的具體用法?Golang Fpdf怎麽用?Golang Fpdf使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


在下文中一共展示了Fpdf類的9個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。

示例1: addHeader

func addHeader(pdf *gofpdf.Fpdf, text string, size int) {
	if pdf == nil {
		return
	}
	pdf.SetFillColor(255, 255, 255)
	pdf.SetTextColor(0, 0, 0)
	pdf.SetFont("Arial", "", (float64)(size))
	pdf.CellFormat((float64)(len(text)*5), (float64)(size/2), text, "0", 0, "L", true, 0, "")
	pdf.Ln(-1)
}
開發者ID:Schokomuesl1,項目名稱:bowie,代碼行數:10,代碼來源:pdfWriter.go

示例2: docWriter

func docWriter(pdf *gofpdf.Fpdf, idx int) *pdfWriter {
	pw := new(pdfWriter)
	pw.pdf = pdf
	pw.idx = idx
	if pdf.Ok() {
		var err error
		fileStr := fmt.Sprintf("%s/pdf/tutorial%02d.pdf", cnGofpdfDir, idx)
		pw.fl, err = os.Create(fileStr)
		if err != nil {
			pdf.SetErrorf("Error opening output file %s", fileStr)
		}
	}
	return pw
}
開發者ID:claudiofelber,項目名稱:gofpdf,代碼行數:14,代碼來源:fpdf_test.go

示例3: tutorialSummary

func tutorialSummary(f *gofpdf.Fpdf, fileStr string) {
	if f.Ok() {
		fl, err := os.Create(fileStr)
		defer fl.Close()
		if err == nil {
			f.Output(fl)
		} else {
			f.SetError(err)
		}
	}
	if f.Ok() {
		fmt.Printf("Successfully generated %s\n", fileStr)
	} else {
		errPrintf("%s\n", f.Error())
	}
}
開發者ID:jkhelil,項目名稱:gofpdf,代碼行數:16,代碼來源:makefont.go

示例4: createTable

func createTable(pdf *gofpdf.Fpdf, header []string, data [][]string, columnSize []float64) {
	if pdf == nil {
		return
	}
	fmt.Println(header)
	fmt.Println("---")
	fmt.Println(data)
	fmt.Println("---")
	fmt.Println(columnSize)
	fmt.Println("---")

	cLen := len(columnSize)
	if cLen == 0 {
		return
	}
	fmt.Println("cLen > 0")
	if len(header) != 0 && cLen != len(header) {
		return
	}
	fmt.Println("len header 0 or eq to cLen")
	for _, v := range data {
		if len(v) != cLen {
			return
		}
	}
	fmt.Println("Check done")
	pdf.SetFillColor(128, 128, 128)
	pdf.SetTextColor(255, 255, 255)
	pdf.SetDrawColor(128, 0, 0)
	pdf.SetLineWidth(.3)
	pdf.SetFont("Arial", "", 12)
	// display header fields
	for i, str := range header {
		pdf.CellFormat(columnSize[i], 7, str, "1", 0, "C", true, 0, "")
	}
	// only advance a line if we wrote a header
	if len(header) > 0 {
		pdf.Ln(-1)
	}
	// display data /w alternating background
	pdf.SetFillColor(224, 235, 255)
	pdf.SetTextColor(0, 0, 0)
	pdf.SetFont("", "", 0)
	//  Data
	fill := false
	for _, c := range data {
		for i, str := range c {
			pdf.CellFormat(columnSize[i], 6, str, "LR", 0, "", fill, 0, "")
		}
		pdf.Ln(-1)
		fill = !fill
	}
}
開發者ID:Schokomuesl1,項目名稱:bowie,代碼行數:53,代碼來源:pdfWriter.go

示例5: SaveToPdfFile

// SaveToPdfFile creates and saves a pdf document to a file
func SaveToPdfFile(filePath string, pdf *gofpdf.Fpdf) error {
	return pdf.OutputFileAndClose(filePath)
}
開發者ID:zzn01,項目名稱:draw2d,代碼行數:4,代碼來源:fileutil.go

示例6: smiley

func smiley(pdf *gofpdf.Fpdf, x, y float64) {
	pdf.Circle(0.75+x+0.5, 1+y, 0.4, "D")
	pdf.Circle(1.1+x, 0.8+y, 0.05, "DF")
	pdf.Circle(1.4+x, 0.8+y, 0.05, "DF")
	pdf.Arc(0.75+x+0.5, 1.1+y, 0.2, 0.2, 180, 90, 270, "FD")
}
開發者ID:voltron42,項目名稱:scouts,代碼行數:6,代碼來源:board.go

示例7: addSpaces

func addSpaces(pdf *gofpdf.Fpdf, spaces ...Space) {
	for _, space := range spaces {
		pdf.SetFillColor(space.Color.R, space.Color.G, space.Color.B)
		pdf.Rect(space.X+0.75, space.Y+0.5, 1, 1, "FD")
	}
}
開發者ID:voltron42,項目名稱:scouts,代碼行數:6,代碼來源:board.go

示例8: poly

func poly(pdf *gofpdf.Fpdf, style string, points ...gofpdf.PointType) {
	pdf.Polygon(points, style)
}
開發者ID:voltron42,項目名稱:scouts,代碼行數:3,代碼來源:board.go

示例9: docWriter

func docWriter(pdf *gofpdf.Fpdf, idx int) *pdfWriter {
	pw := new(pdfWriter)
	pw.pdf = pdf
	pw.idx = idx
	if pdf.Ok() {
		var err error
		fileStr := fmt.Sprintf("%s\\test_pdf_%02d.pdf", cnGofpdfDir, idx)
		pw.fl, err = os.Create(fileStr)
		if err != nil {
			pdf.SetErrorf("Error opening output file %s", fileStr)
		}
	}
	fileLock1 := Locker{false, "lock#1"}
	printIsLocked(fileLock1)
	fileLock1.locked = true
	printIsLocked(fileLock1)

	fileLock2 := Locker{true, "lock#2"}
	printIsLocked(fileLock2)

	return pw
}
開發者ID:dmitrysl,項目名稱:go-test,代碼行數:22,代碼來源:hello.go


注:本文中的github.com/jung-kurt/gofpdf.Fpdf類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。