本文整理匯總了Golang中github.com/jung-kurt/gofpdf.Fpdf.Ln方法的典型用法代碼示例。如果您正苦於以下問題:Golang Fpdf.Ln方法的具體用法?Golang Fpdf.Ln怎麽用?Golang Fpdf.Ln使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類github.com/jung-kurt/gofpdf.Fpdf
的用法示例。
在下文中一共展示了Fpdf.Ln方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的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)
}
示例2: 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
}
}