Documentation ¶
Index ¶
- type Maroto
- type PdfMaroto
- func (s *PdfMaroto) AddPage()
- func (s *PdfMaroto) AddUTF8Font(familyStr string, styleStr consts.Style, fileStr string)
- func (s *PdfMaroto) AddUTF8FontFromBytes(familyStr string, styleStr consts.Style, utf8Bytes []byte)
- func (s *PdfMaroto) Barcode(code string, prop ...props.Barcode) (err error)
- func (s *PdfMaroto) Base64Image(base64 string, extension consts.Extension, prop ...props.Rect) error
- func (s *PdfMaroto) Col(width uint, closure func())
- func (s *PdfMaroto) ColSpace(gridSize uint)
- func (s *PdfMaroto) DataMatrixCode(code string, prop ...props.Rect)
- func (s *PdfMaroto) FileImage(filePathName string, prop ...props.Rect) error
- func (s *PdfMaroto) GetBorder() bool
- func (s *PdfMaroto) GetCurrentOffset() float64
- func (s *PdfMaroto) GetCurrentPage() int
- func (s *PdfMaroto) GetDefaultFontFamily() string
- func (s *PdfMaroto) GetPageMargins() (left float64, top float64, right float64, bottom float64)
- func (s *PdfMaroto) GetPageSize() (width float64, height float64)
- func (s *PdfMaroto) Line(spaceHeight float64, prop ...props.Line)
- func (s *PdfMaroto) Output() (bytes.Buffer, error)
- func (s *PdfMaroto) OutputFileAndClose(filePathName string) (err error)
- func (s *PdfMaroto) QrCode(code string, prop ...props.Rect)
- func (s *PdfMaroto) RegisterFooter(closure func())
- func (s *PdfMaroto) RegisterHeader(closure func())
- func (s *PdfMaroto) Row(height float64, closure func())
- func (s *PdfMaroto) SetAliasNbPages(alias string)
- func (s *PdfMaroto) SetAuthor(author string, isUTF8 bool)
- func (s *PdfMaroto) SetBackgroundColor(color color.Color)
- func (s *PdfMaroto) SetBorder(on bool)
- func (s *PdfMaroto) SetCompression(compress bool)
- func (s *PdfMaroto) SetCreationDate(time time.Time)
- func (s *PdfMaroto) SetCreator(creator string, isUTF8 bool)
- func (s *PdfMaroto) SetDefaultFontFamily(fontFamily string)
- func (s *PdfMaroto) SetFirstPageNb(number int)
- func (s *PdfMaroto) SetFontLocation(fontDirStr string)
- func (s *PdfMaroto) SetMaxGridSum(maxGridSum float64)
- func (s *PdfMaroto) SetPageMargins(left, top, right float64)
- func (s *PdfMaroto) SetProtection(actionFlag byte, userPassStr, ownerPassStr string)
- func (s *PdfMaroto) SetSubject(subject string, isUTF8 bool)
- func (s *PdfMaroto) SetTitle(title string, isUTF8 bool)
- func (s *PdfMaroto) Signature(label string, prop ...props.Font)
- func (s *PdfMaroto) TableList(header []string, contents [][]string, prop ...props.TableList)
- func (s *PdfMaroto) Text(text string, prop ...props.Text)
Examples ¶
- NewMaroto
- NewMarotoCustomSize
- PdfMaroto.AddPage
- PdfMaroto.AddUTF8Font
- PdfMaroto.AddUTF8FontFromBytes
- PdfMaroto.Barcode
- PdfMaroto.Base64Image
- PdfMaroto.Col
- PdfMaroto.ColSpace
- PdfMaroto.DataMatrixCode
- PdfMaroto.FileImage
- PdfMaroto.GetBorder
- PdfMaroto.GetCurrentOffset
- PdfMaroto.GetCurrentPage
- PdfMaroto.GetDefaultFontFamily
- PdfMaroto.GetPageMargins
- PdfMaroto.GetPageSize
- PdfMaroto.Line
- PdfMaroto.Output
- PdfMaroto.OutputFileAndClose
- PdfMaroto.QrCode
- PdfMaroto.RegisterFooter
- PdfMaroto.RegisterHeader
- PdfMaroto.Row
- PdfMaroto.SetAliasNbPages
- PdfMaroto.SetAuthor
- PdfMaroto.SetBackgroundColor
- PdfMaroto.SetBorder
- PdfMaroto.SetCompression
- PdfMaroto.SetCreationDate
- PdfMaroto.SetCreator
- PdfMaroto.SetFirstPageNb
- PdfMaroto.SetFontLocation
- PdfMaroto.SetMaxGridSum
- PdfMaroto.SetPageMargins
- PdfMaroto.SetProtection
- PdfMaroto.SetSubject
- PdfMaroto.SetTitle
- PdfMaroto.Signature
- PdfMaroto.TableList
- PdfMaroto.Text
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Maroto ¶
type Maroto interface { // Grid System Row(height float64, closure func()) Col(width uint, closure func()) ColSpace(gridSize uint) // Registers RegisterHeader(closure func()) // Outside Col/Row Components TableList(header []string, contents [][]string, prop ...props.TableList) Line(spaceHeight float64, prop ...props.Line) // Inside Col/Row Components Text(text string, prop ...props.Text) FileImage(filePathName string, prop ...props.Rect) (err error) Base64Image(base64 string, extension consts.Extension, prop ...props.Rect) (err error) Barcode(code string, prop ...props.Barcode) error QrCode(code string, prop ...props.Rect) DataMatrixCode(code string, prop ...props.Rect) Signature(label string, prop ...props.Font) // File System OutputFileAndClose(filePathName string) error Output() (bytes.Buffer, error) // Helpers AddPage() SetBorder(on bool) SetBackgroundColor(color color.Color) SetAliasNbPages(alias string) SetFirstPageNb(number int) GetBorder() bool GetPageSize() (width float64, height float64) GetCurrentPage() int GetCurrentOffset() float64 SetPageMargins(left, top, right float64) GetPageMargins() (left float64, top float64, right float64, bottom float64) SetMaxGridSum(maxGridSum float64) // Fonts AddUTF8Font(familyStr string, styleStr consts.Style, fileStr string) AddUTF8FontFromBytes(familyStr string, styleStr consts.Style, utf8Bytes []byte) SetFontLocation(fontDirStr string) SetDefaultFontFamily(fontFamily string) GetDefaultFontFamily() string // Metadata SetCompression(compress bool) SetProtection(actionFlag byte, userPassStr, ownerPassStr string) SetAuthor(author string, isUTF8 bool) SetCreator(creator string, isUTF8 bool) SetSubject(subject string, isUTF8 bool) SetTitle(title string, isUTF8 bool) SetCreationDate(time time.Time) }
Maroto is the principal abstraction to create a PDF document.
func NewMaroto ¶
func NewMaroto(orientation consts.Orientation, pageSize consts.PageSize) Maroto
NewMaroto create a Maroto instance returning a pointer to PdfMaroto Receive an Orientation and a PageSize. Shorthand when using a preset page size from consts.PageSize.
Example ¶
ExampleNewMaroto demonstrates how to create maroto.
package main import ( "github.com/johnfercher/maroto/pkg/consts" "github.com/johnfercher/maroto/pkg/pdf" ) func main() { m := pdf.NewMaroto(consts.Portrait, consts.A4) // Do things m.GetPageMargins() // Do more things and save... }
Output:
func NewMarotoCustomSize ¶ added in v0.27.0
func NewMarotoCustomSize(orientation consts.Orientation, pageSize consts.PageSize, unitStr string, width, height float64) Maroto
NewMarotoCustomSize creates a Maroto instance returning a pointer to PdfMaroto Receive an Orientation and a PageSize. Use if custom page size is needed. Otherwise use NewMaroto() shorthand if using page sizes from consts.Pagesize. If using custom width and height, pageSize is just a string value for the format and takes no effect. Width and height inputs are measurements of the page in Portrait orientation.
Example ¶
ExampleNewMaroto demonstrates how to create maroto with custom page size.
package main import ( "github.com/johnfercher/maroto/pkg/consts" "github.com/johnfercher/maroto/pkg/pdf" ) func main() { m := pdf.NewMarotoCustomSize(consts.Landscape, "C6", "mm", 114.0, 162.0) // Do things m.GetPageMargins() // Do more things and save... }
Output:
type PdfMaroto ¶
type PdfMaroto struct { // Gofpdf wrapper. Pdf fpdf.Fpdf // Components. Math internal.Math Font internal.Font TextHelper internal.Text SignHelper internal.Signature Image internal.Image Code internal.Code TableListHelper internal.TableList LineHelper internal.Line // contains filtered or unexported fields }
PdfMaroto is the principal structure which implements Maroto abstraction.
func (*PdfMaroto) AddPage ¶ added in v0.26.0
func (s *PdfMaroto) AddPage()
AddPage adds a new page in the PDF.
Example ¶
ExamplePdfMaroto_AddPage how to force add a new page.
package main import ( "github.com/johnfercher/maroto/pkg/consts" "github.com/johnfercher/maroto/pkg/pdf" ) func main() { m := pdf.NewMaroto(consts.Portrait, consts.A4) // Add rows, cols and components m.AddPage() // Add rows, col and components in a new page // Do more things and save... }
Output:
func (*PdfMaroto) AddUTF8Font ¶ added in v0.30.0
AddUTF8Font add a custom utf8 font. familyStr is the name of the custom font registered in maroto. styleStr is the style of the font and fileStr is the path to the .ttf file.
Example ¶
ExamplePdfMaroto_AddUTF8Font demonstrates how to add a custom utf8 font.
package main import ( "github.com/johnfercher/maroto/pkg/consts" "github.com/johnfercher/maroto/pkg/pdf" "github.com/johnfercher/maroto/pkg/props" ) func main() { m := pdf.NewMaroto(consts.Portrait, consts.A4) // Define font to all styles. m.AddUTF8Font("CustomArial", consts.Normal, "internal/assets/fonts/arial-unicode-ms.ttf") m.AddUTF8Font("CustomArial", consts.Italic, "internal/assets/fonts/arial-unicode-ms.ttf") m.AddUTF8Font("CustomArial", consts.Bold, "internal/assets/fonts/arial-unicode-ms.ttf") m.AddUTF8Font("CustomArial", consts.BoldItalic, "internal/assets/fonts/arial-unicode-ms.ttf") m.Row(10, func() { m.Col(12, func() { // Use style. m.Text("CustomUtf8Font", props.Text{ Family: "CustomArial", }) }) }) // Do more things and save... }
Output:
func (*PdfMaroto) AddUTF8FontFromBytes ¶ added in v0.43.0
AddUTF8FontFromBytes adds a custom UTF8 font from the provided bytes. familyStr is the name of the custom font registered in maroto. styleStr is the style of the font and fileStr is the path to the .ttf file.
Example ¶
ExamplePdfMaroto_AddUTF8FontFromBytes demonstrates how to add a custom UTF8 font from bytes.
package main import ( "io/ioutil" "github.com/johnfercher/maroto/pkg/consts" "github.com/johnfercher/maroto/pkg/pdf" "github.com/johnfercher/maroto/pkg/props" ) func main() { m := pdf.NewMaroto(consts.Portrait, consts.A4) // Read font .ttf file contents fontBytes, err := ioutil.ReadFile("internal/assets/fonts/arial-unicode-ms.ttf") if err != nil { // Return error } // Add font to Maroto m.AddUTF8FontFromBytes("CustomArial", consts.Normal, fontBytes) m.AddUTF8FontFromBytes("CustomArial", consts.Italic, fontBytes) m.AddUTF8FontFromBytes("CustomArial", consts.Bold, fontBytes) m.AddUTF8FontFromBytes("CustomArial", consts.BoldItalic, fontBytes) m.Row(10, func() { m.Col(12, func() { // Use new font style m.Text("CustomUtf8Font", props.Text{ Family: "CustomArial", Style: consts.Bold, }) }) }) }
Output:
func (*PdfMaroto) Barcode ¶
Barcode create an barcode inside a cell.
Example ¶
ExamplePdfMaroto_Barcode demonstrates how to place a barcode inside a Col.
package main import ( "github.com/johnfercher/maroto/pkg/consts" "github.com/johnfercher/maroto/pkg/pdf" "github.com/johnfercher/maroto/pkg/props" ) func main() { // Passing nil on barcode props parameter implies the Barcode fills it's // context cell depending on it's size. // It's possible to define the barcode positioning through // the top and left parameters unless center parameter is true. // In brief, when center parameter equals true, left and top parameters has no effect. // Percent parameter represents the Barcode's width/height inside the cell. // i.e. Percent: 75 means that the Barcode will take up 75% of Col's width // There is a constraint in the proportion defined, height cannot be greater than 20% of // the width, and height cannot be smaller than 10% of the width. m := pdf.NewMaroto(consts.Portrait, consts.A4) // Do a lot of things on rows and columns... m.Col(12, func() { _ = m.Barcode("https://github.com/johnfercher/maroto", props.Barcode{ Percent: 75, Proportion: props.Proportion{Width: 50, Height: 10}, Center: true, }) }) // do more things... }
Output:
func (*PdfMaroto) Base64Image ¶
func (s *PdfMaroto) Base64Image(base64 string, extension consts.Extension, prop ...props.Rect) error
Base64Image add an Image reading byte slices inside a cell. Defining Image properties.
Example ¶
ExamplePdfMaroto_Base64Image demonstrates how to add an Image from a base64 string.
package main import ( "encoding/base64" "github.com/johnfercher/maroto/pkg/consts" "github.com/johnfercher/maroto/pkg/pdf" "github.com/johnfercher/maroto/pkg/props" ) func main() { // When props.Rect is nil, method make Image fulfill the context cell. // When center is true, left and top has no effect. // Percent represents the width/height of the Image inside the cell, // Ex: 85, means that Image will have width of 85% of column width. // When center is false, is possible to manually positioning the Image. m := pdf.NewMaroto(consts.Portrait, consts.A4) rowHeight := 5.0 // Bytes of the image loaded bytes := []byte{1, 2, 3} base64String := base64.StdEncoding.EncodeToString(bytes) m.Row(rowHeight, func() { m.Col(12, func() { _ = m.Base64Image(base64String, consts.Png, props.Rect{ Left: 5, Top: 5, Center: true, Percent: 85, }) }) }) // Do more things and save... }
Output:
func (*PdfMaroto) Col ¶
Col create a column inside a row and enable to add components inside. Maroto do not support recursive columns or rows inside columns.
Example ¶
ExamplePdfMaroto_Col demonstrates how to add an useful column.
package main import ( "github.com/johnfercher/maroto/pkg/consts" "github.com/johnfercher/maroto/pkg/pdf" ) func main() { m := pdf.NewMaroto(consts.Portrait, consts.A4) rowHeight := 5.0 // Warning: The sum of all column gridSize cannot extrapolate 12 // Warning: There is no way to use a row inside a row or a row inside a col. m.Row(rowHeight, func() { m.Col(12, func() { // Add Image, Text, Signature, QrCode or Barcode... }) }) // Warning: The sum of all column gridSize cannot extrapolate 12 // Warning: There is no way to use a row inside a row or a row inside a col. m.Row(rowHeight, func() { m.Col(6, func() { // Add Image, Text, Signature, QrCode or Barcode... }) m.Col(6, func() { // Add Image, Text, Signature, QrCode or Barcode... }) }) // Do more things and save... }
Output:
func (*PdfMaroto) ColSpace ¶
ColSpace create an empty column inside a row.
Example ¶
ExamplePdfMaroto_ColSpace demonstrates how to add an empty column inside a row.
package main import ( "github.com/johnfercher/maroto/pkg/consts" "github.com/johnfercher/maroto/pkg/pdf" ) func main() { m := pdf.NewMaroto(consts.Portrait, consts.A4) rowHeight := 5.0 // Warning: The sum of all column gridSize cannot extrapolate 12 m.Row(rowHeight, func() { m.ColSpace(12) }) // Warning: The sum of all column gridSize cannot extrapolate 12 m.Row(rowHeight, func() { m.ColSpace(6) m.ColSpace(6) }) // Do more things and save... }
Output:
func (*PdfMaroto) DataMatrixCode ¶ added in v0.33.0
DataMatrixCode creates an datamatrix code inside a cell.
Example ¶
ExamplePdfMaroto_DataMatrixCode demonstrates how to add a DataMatrixCode inside a Col.
package main import ( "github.com/johnfercher/maroto/pkg/consts" "github.com/johnfercher/maroto/pkg/pdf" "github.com/johnfercher/maroto/pkg/props" ) func main() { // Passing nil on rectProps makes // the DataMatrixCode fill the context cell. // When center is true, left and top has no effect. // Percent represents the width/height of the DataMatrixCode inside the cell. // i.e. 80 means that the DataMatrixCode will take up 80% of Col's width // When center is false, positioning of the DataMatrixCode can be done through // left and top. m := pdf.NewMaroto(consts.Portrait, consts.A4) rowHeight := 5.0 m.Row(rowHeight, func() { m.Col(12, func() { m.DataMatrixCode("https://godoc.org/github.com/johnfercher/maroto", props.Rect{ Left: 5, Top: 5, Center: false, Percent: 80, }) }) }) }
Output:
func (*PdfMaroto) FileImage ¶
FileImage add an Image reading from disk inside a cell. Defining Image properties.
Example ¶
ExamplePdfMaroto_FileImage demonstrates how add an Image reading from disk.
package main import ( "github.com/johnfercher/maroto/pkg/consts" "github.com/johnfercher/maroto/pkg/pdf" "github.com/johnfercher/maroto/pkg/props" ) func main() { // When props.Rect is nil, method make Image fulfill the context cell. // When center is true, left and top has no effect. // Percent represents the width/height of the Image inside the cell, // Ex: 85, means that Image will have width of 85% of column width. // When center is false, is possible to manually positioning the Image. m := pdf.NewMaroto(consts.Portrait, consts.A4) rowHeight := 5.0 m.Row(rowHeight, func() { m.Col(12, func() { _ = m.FileImage("path/Image.jpg", props.Rect{ Left: 5, Top: 5, Center: true, Percent: 85, }) }) }) // Do more things and save... }
Output:
func (*PdfMaroto) GetBorder ¶
GetBorder return the actual border value.
Example ¶
ExamplePdfMaroto_GetBorder demonstrates how to obtain the actual borders status.
package main import ( "github.com/johnfercher/maroto/pkg/consts" "github.com/johnfercher/maroto/pkg/pdf" ) func main() { m := pdf.NewMaroto(consts.Portrait, consts.A4) // false. _ = m.GetBorder() m.SetBorder(true) // true. _ = m.GetBorder() // Do more things and save... }
Output:
func (*PdfMaroto) GetCurrentOffset ¶ added in v0.21.2
GetCurrentOffset obtain the current offset in y axis.
Example ¶
ExamplePdfMaroto_GetCurrentOffset demonstrates how to obtain the current write offset i.e the height of cursor adding content in the pdf.
package main import ( "github.com/johnfercher/maroto/pkg/consts" "github.com/johnfercher/maroto/pkg/pdf" ) func main() { m := pdf.NewMaroto(consts.Portrait, consts.A4) // Offset here will be 0. _ = m.GetCurrentOffset() // Add Rows, Cols and Components until maroto add a new page. // Offset here will not be 0. _ = m.GetCurrentOffset() // Add Rows, Cols and Components to maroto add a new page. // Offset here will be 0. _ = m.GetCurrentOffset() // Do more things and save... }
Output:
func (*PdfMaroto) GetCurrentPage ¶
GetCurrentPage obtain the current page index this can be used inside a RegisterFooter/RegisterHeader to draw the current page, or to another purposes.
Example ¶
ExamplePdfMaroto_GetCurrentPage demonstrates how to obtain the current page index.
package main import ( "github.com/johnfercher/maroto/pkg/consts" "github.com/johnfercher/maroto/pkg/pdf" ) func main() { m := pdf.NewMaroto(consts.Portrait, consts.A4) // Index here will be 0. _ = m.GetCurrentPage() // Add Rows, Cols and Components. // Index here will not be 0. _ = m.GetCurrentPage() // Do more things and save... }
Output:
func (*PdfMaroto) GetDefaultFontFamily ¶ added in v0.30.0
GetDefaultFontFamily allows you to get the current default font family.
Example ¶
ExamplePdfMaroto_AddUTF8Font demonstrates how to obtain the current default font family.
package main import ( "github.com/johnfercher/maroto/pkg/consts" "github.com/johnfercher/maroto/pkg/pdf" ) func main() { m := pdf.NewMaroto(consts.Portrait, consts.A4) // Will return Arial. _ = m.GetDefaultFontFamily() // Change the default to Courier. m.SetDefaultFontFamily(consts.Courier) // Will return Courier. _ = m.GetDefaultFontFamily() // Do more things and save... }
Output:
func (*PdfMaroto) GetPageMargins ¶ added in v0.23.0
GetPageMargins returns the set page margins. Comes in order of Left, Top, Right, Bottom Default page margins is left: 10, top: 10, right: 10.
Example ¶
ExamplePdfMaroto_GetPageMargins demonstrates how to obtain the current page margins.
package main import ( "fmt" "github.com/johnfercher/maroto/pkg/consts" "github.com/johnfercher/maroto/pkg/pdf" ) func main() { m := pdf.NewMaroto(consts.Portrait, consts.A4) // Get left, top, right, bottom := m.GetPageMargins() fmt.Println(left) fmt.Println(top) fmt.Println(right) fmt.Println(bottom) // Do more things and save... }
Output:
func (*PdfMaroto) GetPageSize ¶
GetPageSize return the actual page size.
Example ¶
ExamplePdfMaroto_GetPageSize demonstrates how to obtain the current page size (width and height).
package main import ( "fmt" "github.com/johnfercher/maroto/pkg/consts" "github.com/johnfercher/maroto/pkg/pdf" ) func main() { m := pdf.NewMaroto(consts.Portrait, consts.A4) // Get width, height := m.GetPageSize() fmt.Println(width) fmt.Println(height) // Do more things and save... }
Output:
func (*PdfMaroto) Line ¶
Line draw a line from margin left to margin right in the current row.
Example ¶
ExamplePdfMaroto_Line demonstrates how to draw a line separator.
package main import ( "github.com/johnfercher/maroto/pkg/color" "github.com/johnfercher/maroto/pkg/consts" "github.com/johnfercher/maroto/pkg/pdf" "github.com/johnfercher/maroto/pkg/props" ) func main() { m := pdf.NewMaroto(consts.Portrait, consts.A4) // Not passing Prop.Color make line as black. // Not passing width make width as 0.1. // Not passing style make style as solid. m.Line(1.0, props.Line{ Color: color.Color{ Red: 255, Green: 100, Blue: 50, }, Style: consts.Dotted, Width: 1.0, }) // Do more things and save... }
Output:
func (*PdfMaroto) Output ¶
Output extract PDF in byte slices.
Example ¶
ExamplePdfMaroto_Output demonstrates how to get a base64 string from PDF.
package main import ( "github.com/johnfercher/maroto/pkg/consts" "github.com/johnfercher/maroto/pkg/pdf" ) func main() { m := pdf.NewMaroto(consts.Portrait, consts.A4) // Do a lot of things on rows and columns... _, err := m.Output() if err != nil { return } }
Output:
func (*PdfMaroto) OutputFileAndClose ¶
OutputFileAndClose save pdf in disk.
Example ¶
ExamplePdfMaroto_OutputFileAndClose demonstrates how to save a PDF object into disk.
package main import ( "github.com/johnfercher/maroto/pkg/consts" "github.com/johnfercher/maroto/pkg/pdf" ) func main() { m := pdf.NewMaroto(consts.Portrait, consts.A4) // Do a lot of things on rows and columns... err := m.OutputFileAndClose("path/file.pdf") if err != nil { return } }
Output:
func (*PdfMaroto) QrCode ¶
QrCode create a qrcode inside a cell.
Example ¶
ExamplePdfMaroto_QrCode demonstrates how to add a QR Code inside a Col.
package main import ( "github.com/johnfercher/maroto/pkg/consts" "github.com/johnfercher/maroto/pkg/pdf" "github.com/johnfercher/maroto/pkg/props" ) func main() { // Passing nil on rectProps makes // the QR Code fills the context cell. // When center is true, left and top has no effect. // Percent represents the width/height of the QR Code inside the cell. // i.e. 80 means that the QR Code will take up 80% of Col's width // When center is false, positioning of the QR Code can be done through // left and top. m := pdf.NewMaroto(consts.Portrait, consts.A4) rowHeight := 5.0 m.Row(rowHeight, func() { m.Col(12, func() { m.QrCode("https://godoc.org/github.com/johnfercher/maroto", props.Rect{ Left: 5, Top: 5, Center: false, Percent: 80, }) }) }) }
Output:
func (*PdfMaroto) RegisterFooter ¶
func (s *PdfMaroto) RegisterFooter(closure func())
RegisterFooter define a sequence of Rows, Lines ou TableLists which will be added in every new page.
func (*PdfMaroto) RegisterHeader ¶
func (s *PdfMaroto) RegisterHeader(closure func())
RegisterHeader define a sequence of Rows, Lines ou TableLists which will be added in every new page.
Example ¶
ExamplePdfMaroto_RegisterHeader demonstrates how to register header.
package main import ( "time" "github.com/johnfercher/maroto/pkg/consts" "github.com/johnfercher/maroto/pkg/pdf" "github.com/johnfercher/maroto/pkg/props" ) func main() { // For register header in Maroto you need to call method RegisterHeader // that receives a closure. // In this closure you are free to set any components you want to compose // your header. // In this example there is a two texts with different props and one image. // It is important to remember that it is recommended to create Row's and // Col's if necessary. // You have to register the header immediately after the Maroto m := pdf.NewMaroto(consts.Portrait, consts.A4) m.RegisterHeader(func() { m.Row(10, func() { m.Col(3, func() { m.Text("lorem ipsum dolor", props.Text{Align: consts.Left}) }) m.Col(3, func() { _ = m.FileImage("internal/assets/images/frontpage.png") }) m.Col(3, func() { m.Text(time.Now().Format("02-January-2006"), props.Text{Align: consts.Right}) }) }) }) // Do more things or not and save... }
Output:
func (*PdfMaroto) Row ¶
Row define a row and enable add columns inside the row. Maroto do not support recursive rows or rows inside columns.
Example ¶
ExamplePdfMaroto_Row demonstrates how to define a row.
package main import ( "github.com/johnfercher/maroto/pkg/consts" "github.com/johnfercher/maroto/pkg/pdf" ) func main() { m := pdf.NewMaroto(consts.Portrait, consts.A4) rowHeight := 5.0 // Warning: There is no way to use a row inside a row or a row inside a col. m.Row(rowHeight, func() { m.Col(12, func() { // Add a component }) }) // Warning: There is no way to use a row inside a row or a row inside a col. m.Row(rowHeight, func() { m.Col(12, func() { // Add another component }) }) // Do more things and save... }
Output:
func (*PdfMaroto) SetAliasNbPages ¶ added in v0.28.0
SetAliasNbPages Defines an alias for the total number of pages. It will be substituted as the document is closed.
Example ¶
ExamplePdfMaroto_SetAliasNbPages demonstrates how to use SetAliasNbPages method.
package main import ( "github.com/johnfercher/maroto/pkg/consts" "github.com/johnfercher/maroto/pkg/pdf" ) func main() { m := pdf.NewMaroto(consts.Portrait, consts.A4) // Ths will create placeholder "{nbs}" to use in texts for total count of pages. m.SetAliasNbPages("{nbs}") // This will create a row with full width column and inside it a text that will display the total number of pages. m.Row(10, func() { m.Col(12, func() { m.Text("Total number of pages: {nbs}") }) }) }
Output:
func (*PdfMaroto) SetAuthor ¶ added in v0.40.0
SetAuthor allows to set author name.
Example ¶
ExamplePdfMaroto_SetAuthor demonstrates how to define the author.
package main import ( "github.com/johnfercher/maroto/pkg/consts" "github.com/johnfercher/maroto/pkg/pdf" ) func main() { m := pdf.NewMaroto(consts.Portrait, consts.A4) m.SetAuthor("author", true) // Do more things and save... }
Output:
func (*PdfMaroto) SetBackgroundColor ¶ added in v0.24.0
SetBackgroundColor define the background color of the PDF. This method can be used to toggle background from rows.
Example ¶
ExamplePdfMaroto_SetBackgroundColor demonstrates how to use the SetBackgroundColor method.
package main import ( "github.com/johnfercher/maroto/pkg/color" "github.com/johnfercher/maroto/pkg/consts" "github.com/johnfercher/maroto/pkg/pdf" ) func main() { m := pdf.NewMaroto(consts.Portrait, consts.A4) m.SetBackgroundColor(color.Color{ Red: 100, Green: 20, Blue: 30, }) // This Row will be filled with the color. m.Row(20, func() { m.Col(12, func() { // Add components. }) }) m.SetBackgroundColor(color.NewWhite()) // Note: The default value is White (255, 255, 255), if maroto see this value it will ignore not will the cell with any color. // This Row will not be filled with the color. m.Row(20, func() { m.Col(12, func() { // Add components. }) }) // Do more things and save... }
Output:
func (*PdfMaroto) SetBorder ¶
SetBorder enable the draw of lines in every cell. Draw borders in all columns created.
Example ¶
ExamplePdfMaroto_SetBorder demonstrates how to enable the line drawing in every cell.
package main import ( "github.com/johnfercher/maroto/pkg/consts" "github.com/johnfercher/maroto/pkg/pdf" ) func main() { m := pdf.NewMaroto(consts.Portrait, consts.A4) m.SetBorder(true) // Add some Rows, Cols, Lines and etc... // Here will be drawn borders in every cell. m.SetBorder(false) // Add some Rows, Cols, Lines and etc... // Here will not be drawn borders. // Do more things and save... }
Output:
func (*PdfMaroto) SetCompression ¶ added in v0.31.0
SetCompression allows to set/unset compression for a page Compression is on by default.
Example ¶
ExamplePdfMaroto_SetCompression demonstrates how to disable compression By default compression is enabled.
package main import ( "github.com/johnfercher/maroto/pkg/consts" "github.com/johnfercher/maroto/pkg/pdf" ) func main() { m := pdf.NewMaroto(consts.Portrait, consts.A4) m.SetCompression(false) // Do more things and save... }
Output:
func (*PdfMaroto) SetCreationDate ¶ added in v0.40.0
SetCreationDate allows to set creation date.
Example ¶
ExamplePdfMaroto_SetCreationDate demonstrates how to define the creation date.
package main import ( "time" "github.com/johnfercher/maroto/pkg/consts" "github.com/johnfercher/maroto/pkg/pdf" ) func main() { m := pdf.NewMaroto(consts.Portrait, consts.A4) timeNow := time.Now() m.SetCreationDate(timeNow) // Do more things and save... }
Output:
func (*PdfMaroto) SetCreator ¶ added in v0.40.0
SetCreator allows to set creator.
Example ¶
ExamplePdfMaroto_SetCreator demonstrates how to define the creator.
package main import ( "github.com/johnfercher/maroto/pkg/consts" "github.com/johnfercher/maroto/pkg/pdf" ) func main() { m := pdf.NewMaroto(consts.Portrait, consts.A4) m.SetCreator("creator", true) // Do more things and save... }
Output:
func (*PdfMaroto) SetDefaultFontFamily ¶ added in v0.30.0
SetDefaultFontFamily allows you to customize the default font. By default Arial is the original value.
func (*PdfMaroto) SetFirstPageNb ¶ added in v0.28.0
SetFirstPageNb define first page number Default: 0.
Example ¶
ExamplePdfMaroto_SetFirstPageNb demonstrates how to use SetFirstPageNb method.
package main import ( "github.com/johnfercher/maroto/pkg/consts" "github.com/johnfercher/maroto/pkg/pdf" ) func main() { m := pdf.NewMaroto(consts.Portrait, consts.A4) // Ths will set first page index to 1. m.SetFirstPageNb(1) }
Output:
func (*PdfMaroto) SetFontLocation ¶ added in v0.32.0
SetFontLocation allows you to change the fonts lookup location. fontDirStr is an absolute path where the fonts should be located.
Example ¶
ExamplePdfMaroto_SetFontLocation demonstrates how to add a custom utf8 font from custom location.
package main import ( "github.com/johnfercher/maroto/pkg/consts" "github.com/johnfercher/maroto/pkg/pdf" "github.com/johnfercher/maroto/pkg/props" ) func main() { m := pdf.NewMaroto(consts.Portrait, consts.A4) // Define custom location. It might be an absolute path as well as a relative path. m.SetFontLocation("internal/assets/fonts/") // Define font to all styles. m.AddUTF8Font("CustomArial", consts.Normal, "arial-unicode-ms.ttf") m.AddUTF8Font("CustomArial", consts.Italic, "arial-unicode-ms.ttf") m.AddUTF8Font("CustomArial", consts.Bold, "arial-unicode-ms.ttf") m.AddUTF8Font("CustomArial", consts.BoldItalic, "arial-unicode-ms.ttf") m.Row(10, func() { m.Col(12, func() { // Use style. m.Text("CustomUtf8Font", props.Text{ Family: "CustomArial", }) }) }) // Do more things and save... }
Output:
func (*PdfMaroto) SetMaxGridSum ¶ added in v0.42.0
SetMaxGridSum changes the max grid size of the page.
Example ¶
ExamplePdfMaroto_SetMaxGridSum configures max amount of cols per row. Default is 12 cols per row.
package main import ( "github.com/johnfercher/maroto/pkg/consts" "github.com/johnfercher/maroto/pkg/pdf" ) func main() { m := pdf.NewMaroto(consts.Portrait, consts.A4) // Set max cols per row m.SetMaxGridSum(24) // Do more things and save... }
Output:
func (*PdfMaroto) SetPageMargins ¶ added in v0.23.0
SetPageMargins overrides default margins (10,10,10) the new page margin will affect all PDF pages.
Example ¶
ExamplePdfMaroto_SetPageMargins demonstrates how to set custom page margins.
package main import ( "github.com/johnfercher/maroto/pkg/consts" "github.com/johnfercher/maroto/pkg/pdf" ) func main() { m := pdf.NewMaroto(consts.Portrait, consts.A4) m.SetPageMargins(10, 60, 10) // Do more things or not and save... }
Output:
func (*PdfMaroto) SetProtection ¶ added in v0.30.0
SetProtection define a password to open the pdf.
Example ¶
ExamplePdfMaroto_SetProtection demonstrates how to define a protection to pdf.
package main import ( "github.com/johnfercher/maroto/pkg/consts" "github.com/johnfercher/maroto/pkg/pdf" ) func main() { m := pdf.NewMaroto(consts.Portrait, consts.A4) m.SetProtection(1, "userPassword", "ownerPassword") // Do more things and save... }
Output:
func (*PdfMaroto) SetSubject ¶ added in v0.40.0
SetSubject allows to set subject.
Example ¶
ExamplePdfMaroto_SetSubject demonstrates how to define the subject.
package main import ( "github.com/johnfercher/maroto/pkg/consts" "github.com/johnfercher/maroto/pkg/pdf" ) func main() { m := pdf.NewMaroto(consts.Portrait, consts.A4) m.SetSubject("subject", true) // Do more things and save... }
Output:
func (*PdfMaroto) SetTitle ¶ added in v0.40.0
SetTitle allows to set title.
Example ¶
ExamplePdfMaroto_SetTitle demonstrates how to define the title.
package main import ( "github.com/johnfercher/maroto/pkg/consts" "github.com/johnfercher/maroto/pkg/pdf" ) func main() { m := pdf.NewMaroto(consts.Portrait, consts.A4) m.SetTitle("title", true) // Do more things and save... }
Output:
func (*PdfMaroto) Signature ¶
Signature add a space for a signature inside a cell, the space will have a line and a text below.
Example ¶
ExamplePdfMaroto_Signature demonstrates how to add a Signature space inside a col.
package main import ( "github.com/johnfercher/maroto/pkg/color" "github.com/johnfercher/maroto/pkg/consts" "github.com/johnfercher/maroto/pkg/pdf" "github.com/johnfercher/maroto/pkg/props" ) func main() { // Not passing this font prop will lead the method to use all the follow values. // Not passing family, make method use arial. // Not passing style, make method use normal. // Not passing size, make method use 10.0. // Not passing color, make method use the current color. m := pdf.NewMaroto(consts.Portrait, consts.A4) rowHeight := 5.0 m.Row(rowHeight, func() { m.Col(12, func() { m.Signature("LabelForSignature", props.Font{ Size: 12.0, Style: consts.BoldItalic, Family: consts.Courier, Color: color.Color{ Red: 10, Green: 20, Blue: 30, }, }) }) }) // Do more things and save... }
Output:
func (*PdfMaroto) TableList ¶
TableList create a table with multiple rows and columns, so is not possible use this component inside a row or inside a column. Headers define the amount of columns from each row. Headers have bold style, and localized at the top of table. Contents are array of arrays. Each array is one line.
Example ¶
ExamplePdfMaroto_TableList demonstrates how to add a table with multiple rows and columns.
package main import ( "github.com/johnfercher/maroto/pkg/color" "github.com/johnfercher/maroto/pkg/consts" "github.com/johnfercher/maroto/pkg/pdf" "github.com/johnfercher/maroto/pkg/props" ) func main() { // Not passing this table list prop will lead the method to use all the follow values. // Not passing HeaderProp.Size, make the method use 10. // Not passing HeaderProp.Family, make the method use arial. // Not passing HeaderProp.Style, make the method use bold. // Not passing HeaderProp.GridSizes, make the method use an array with same length // Not passing HeaderProp.Color, make the method use a black font // of header array, the values will be perfectly divided to make all columns with the same size. // Not passing Align, make the method to use left. // Not passing ContentProp.Size, make the method use 10. // Not passing ContentProp.Family, make the method use arial. // Not passing ContentProp.Style, make the method use normal. // Not passing ContentProp.Color, make the method use a black font // Not passing Content.GridSizes, make the method use an array with same length // of content array in the first line, the values will be perfectly divided to make all columns with the same size. // Not passing HeaderContentSpace, will make the method use 4. // Not passing VerticalContentPadding, will make the method use 0. This prop cannot be less than 0. // Not passing LineProp.Color will make the method use black (if Line is true). // Not passing LineProp.Width will make the method use 0.1 (if Line is true). // Not passing LineProp.Style will make the method use solid (if Line is true). // Not passing ContentProp.CellTextColorChangerFunc will make the method to no change the cell text color. This prop must be // used with the prop ContentProp.CellTextColorChangerColumnIndex to only change the desired cell text color of a specific column m := pdf.NewMaroto(consts.Portrait, consts.A4) headers := []string{"Header1", "Header2"} contents := [][]string{ {"Content1", "Content2"}, {"Content3", "Content3"}, } m.TableList(headers, contents, props.TableList{ HeaderProp: props.TableListContent{ Family: consts.Arial, Style: consts.Bold, Size: 11.0, GridSizes: []uint{3, 9}, }, ContentProp: props.TableListContent{ Family: consts.Courier, Style: consts.Normal, Size: 10.0, GridSizes: []uint{3, 9}, CellTextColorChangerColumnIndex: 1, CellTextColorChangerFunc: func(cellValue string) color.Color { return color.NewBlack() }, }, Align: consts.Center, AlternatedBackground: &color.Color{ Red: 100, Green: 20, Blue: 255, }, HeaderContentSpace: 10.0, Line: false, LineProp: props.Line{ Style: consts.Dotted, Width: 0.4, }, VerticalContentPadding: 4.0, }) // TableList have to be used at same level as row m.Row(10, func() { m.Col(12, func() { // Add a component }) }) // Do more things and save... }
Output:
func (*PdfMaroto) Text ¶
Text create a text inside a cell.
Example ¶
ExamplePdfMaroto_Text demonstrates how to add a Text inside a col.
package main import ( "github.com/johnfercher/maroto/pkg/color" "github.com/johnfercher/maroto/pkg/consts" "github.com/johnfercher/maroto/pkg/pdf" "github.com/johnfercher/maroto/pkg/props" ) func main() { // Not passing the text prop will lead to use all the follow default values. // Not passing family, makes the method use arial. // Not passing style, makes the method use normal. // Not passing size, makes the method use 10.0. // Not passing align, makes the method use left. // Not passing extrapolate, makes the method use false. // Not passing color, makes the method use the current color. // Not passing Top, Left, or Right makes the method use 0.0. // Top, Left, and Right cannot be less than 0. // VerticalPadding cannot be less than 0. m := pdf.NewMaroto(consts.Portrait, consts.A4) rowHeight := 5.0 m.Row(rowHeight, func() { m.Col(12, func() { m.Text("TextContent", props.Text{ Size: 12.0, Style: consts.BoldItalic, Family: consts.Courier, Align: consts.Center, Top: 1.0, Left: 1.0, Right: 1.0, Extrapolate: false, VerticalPadding: 1.0, Color: color.Color{ Red: 10, Green: 20, Blue: 30, }, }) }) }) // Do more things and save... }
Output: