summaryrefslogtreecommitdiff
path: root/fpdf_test.go
diff options
context:
space:
mode:
authorWilk <wilk@flibuste.net>2016-11-06 21:32:51 +0100
committerWilk <wilk@flibuste.net>2016-11-06 21:32:51 +0100
commit4a54804969df7768f03bbbcf45bbdfdd46bb7149 (patch)
tree98f1f37f542fc73197627ac5d219f61a1e60a4a2 /fpdf_test.go
parenta8ed28c5f45a8bb6c60cdc76464c34ccecf7b7a7 (diff)
Add tables examples ClippedTableCells and WrappedTableCells
Diffstat (limited to 'fpdf_test.go')
-rw-r--r--fpdf_test.go101
1 files changed, 98 insertions, 3 deletions
diff --git a/fpdf_test.go b/fpdf_test.go
index f7ef961..7febb30 100644
--- a/fpdf_test.go
+++ b/fpdf_test.go
@@ -20,9 +20,6 @@ import (
"bufio"
"bytes"
"fmt"
- "github.com/jung-kurt/gofpdf"
- "github.com/jung-kurt/gofpdf/internal/example"
- "github.com/jung-kurt/gofpdf/internal/files"
"io"
"io/ioutil"
"math"
@@ -31,6 +28,10 @@ import (
"path/filepath"
"strconv"
"strings"
+
+ "github.com/jung-kurt/gofpdf"
+ "github.com/jung-kurt/gofpdf/internal/example"
+ "github.com/jung-kurt/gofpdf/internal/files"
)
func init() {
@@ -1761,3 +1762,97 @@ func ExampleFpdf_AddFontFromBytes() {
// Output:
// Successfully generated pdf/Fpdf_EmbeddedFont.pdf
}
+
+// This example demonstrate Clipped table cells
+func ExampleFpdf_ClippedTableCells() {
+ marginCell := 2. // margin of top/bottom of cell
+ pdf := gofpdf.New("P", "mm", "A4", "")
+ pdf.SetFont("Arial", "", 12)
+ pdf.AddPage()
+ pagew, pageh := pdf.GetPageSize()
+ mleft, mright, _, mbottom := pdf.GetMargins()
+
+ cols := []float64{60, 100, pagew - mleft - mright - 100 - 60}
+ rows := [][]string{}
+ for i := 1; i <= 50; i++ {
+ word := fmt.Sprintf("%d:%s", i, strings.Repeat("A", i%100))
+ rows = append(rows, []string{word, word, word})
+ }
+
+ for _, row := range rows {
+ _, lineHt := pdf.GetFontSize()
+ height := lineHt + marginCell
+
+ x, y := pdf.GetXY()
+ // add a new page if the height of the row doesn't fit on the page
+ if y+height >= pageh-mbottom {
+ pdf.AddPage()
+ x, y = pdf.GetXY()
+ }
+ for i, txt := range row {
+ width := cols[i]
+ pdf.Rect(x, y, width, height, "")
+ pdf.ClipRect(x, y, width, height, false)
+ pdf.Cell(width, height, txt)
+ pdf.ClipEnd()
+ x += width
+ }
+ pdf.Ln(-1)
+ }
+ fileStr := example.Filename("Fpdf_ClippedTableCells")
+ err := pdf.OutputFileAndClose(fileStr)
+ example.Summary(err, fileStr)
+ // Output:
+ // Successfully generated pdf/Fpdf_ClippedTableCells.pdf
+}
+
+// This example demonstrate Wrapped table cells
+func ExampleFpdf_WrappedTableCells() {
+ marginCell := 2. // margin of top/bottom of cell
+ pdf := gofpdf.New("P", "mm", "A4", "")
+ pdf.SetFont("Arial", "", 12)
+ pdf.AddPage()
+ pagew, pageh := pdf.GetPageSize()
+ mleft, mright, _, mbottom := pdf.GetMargins()
+
+ cols := []float64{60, 100, pagew - mleft - mright - 100 - 60}
+ rows := [][]string{}
+ for i := 1; i <= 30; i++ {
+ word := fmt.Sprintf("%d:%s", i, strings.Repeat("A", i%100))
+ rows = append(rows, []string{word, word, word})
+ }
+
+ for _, row := range rows {
+ curx, y := pdf.GetXY()
+ x := curx
+
+ height := 0.
+ _, lineHt := pdf.GetFontSize()
+
+ for i, txt := range row {
+ lines := pdf.SplitLines([]byte(txt), cols[i])
+ h := float64(len(lines))*lineHt + marginCell*float64(len(lines))
+ if h > height {
+ height = h
+ }
+ }
+ // add a new page if the height of the row doesn't fit on the page
+ if pdf.GetY()+height > pageh-mbottom {
+ pdf.AddPage()
+ y = pdf.GetY()
+ }
+ for i, txt := range row {
+ width := cols[i]
+ pdf.Rect(x, y, width, height, "")
+ pdf.MultiCell(width, lineHt+marginCell, txt, "", "", false)
+ x += width
+ pdf.SetXY(x, y)
+ }
+ pdf.SetXY(curx, y+height)
+ }
+ fileStr := example.Filename("Fpdf_WrappedTableCells")
+ err := pdf.OutputFileAndClose(fileStr)
+ example.Summary(err, fileStr)
+ // Output:
+ // Successfully generated pdf/Fpdf_WrappedTableCells.pdf
+}