From be3a6c4df9df642829ec0a95b43b280c263251e4 Mon Sep 17 00:00:00 2001 From: Kurt Date: Thu, 28 Feb 2019 08:48:51 -0500 Subject: Refer to example in SetPage() documentation. --- fpdf.go | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'fpdf.go') diff --git a/fpdf.go b/fpdf.go index f18f2ad..1199c4f 100644 --- a/fpdf.go +++ b/fpdf.go @@ -383,7 +383,9 @@ func (f *Fpdf) SetPageBoxRec(t string, pb PageBox) { func (f *Fpdf) SetPageBox(t string, x, y, wd, ht float64) { f.SetPageBoxRec(t, PageBox{SizeType{Wd: wd, Ht: ht}, PointType{X: x, Y: y}}) } + // SetPage sets the current page to that of a valid page in the PDF document. +// The SetPage() example demonstrates this method. func (f *Fpdf) SetPage(pageNum int) { if (pageNum > 0) && (pageNum < len(f.pages)) { f.page = pageNum @@ -677,7 +679,7 @@ func (f *Fpdf) AddPageFormat(orientationStr string, size SizeType) { return } if f.page != len(f.pages)-1 { - f.page = len(f.pages)-1 + f.page = len(f.pages) - 1 } if f.state == 0 { f.open() @@ -693,7 +695,7 @@ func (f *Fpdf) AddPageFormat(orientationStr string, size SizeType) { fc := f.color.fill tc := f.color.text cf := f.colorFlag - + if f.page > 0 { f.inFooter = true // Page footer avoid double call on footer. -- cgit v1.2.1-24-ge1ad