summaryrefslogtreecommitdiff
path: root/template.go
AgeCommit message (Collapse)Author
2018-11-10Merge branch 'ftr/gob' of https://github.com/d1ngd0/gofpdf into d1ngd0-ftr/gobKurt
2018-11-07Created helper functions for serialiationPaul Montag
2018-11-01Explain in documentation why CreateTemplate() is deprecated.Kurt
2018-11-01orientation of a template is now defined by the parent document. depricated ↵d1ngd0
CreateTemplate (#207)
2018-10-31Added Ability to turn template into a byte stringPaul Montag
2017-11-24Replace strings.Index with strings.ContainsWang Guoliang
2016-08-18Allow default compression mode to be set. Go 1.7 introduces a new ↵Kurt
compression/flate routine that results in different compressed streams than before. Consequently, PDFs generated with go 1.7 are not generally binary-equivalent with those generated with previous versions. Turning off compression for test files removes this variability. However, it does not help with PDFs that contain images. For now, those reference PDFs have been removed to allow tests to proceed.
2016-06-05Add Font resource declaration to templates. Thank you geekpexKurt
2015-10-13Use %f rather than %F since earlier versions of Go did not support the ↵Kurt Jung
latter. Thanks, Marcus.
2015-10-12Add reference PDFs for comparison purposes. Document comparison of example ↵Kurt Jung
documents.
2015-10-11Conditionally order another map iteration. Fix 'go vet' problem with unkeyed ↵Kurt Jung
field in composite literal.
2015-10-11Conditionally sort two map iterations in template code; more to come.Kurt Jung
2015-10-10Conditionally sort image catalog. Correct small typos.Kurt Jung
2015-08-12License and attributionMarcus Downing
2015-08-04TemplatingMarcus Downing