summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2018-11-07Changed the byte encoding so we are no longer saving redundant data from ↵Paul Montag
pointers
2018-11-05fixed pointer values when mutltiple templates are usedPaul 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
2018-10-31Merge branch 'd1ngd0-ftr/interface'Kurt
2018-10-31Added interface for Fpdf and TplPaul Montag
2018-09-19Add beginning of test to study issue 193Kurt
2018-09-15fixed warnings gocritic 3.3 (#192)Veselkov Konstantin
2018-07-31Merge branch 'DesignA-Electronics-master'Kurt
2018-08-01barcode: Scale via the PDF rather than the barcode libraryAndre Renaud
This allows arbitrary barcode scaling, rather than whole multiple as required by github.com/boombuler/barcode
2018-07-24gofpdf: add support for Go modules (#185)Sebastien Binet
* gofpdf: add support for Go modules * gofpdf: apply goimports
2018-06-16Change example name to match methodKurt
2018-06-15Merge branch 'master' of https://github.com/jung-kurt/gofpdfKurt
2018-06-15Support negative X position when placing imageKurt
2018-06-01Added public wrapper "GetPageSizeStr" of private method (#181)Marcus Oblak
2018-04-20EOF error when using reader (#176)daill
While you're using a reader for i.e. an image you'll receive an EOF from go's io package which leads to pdf creation error
2018-04-15Add SetHeaderFuncMode() method to automatically set position to left and top ↵Kurt
margin after header function is called. Backward compatibility is preserved. This addresses issue #174.
2018-04-05Add relative position method to gridKurt
2018-04-04Add X and Y range methods to gridKurt
2018-04-03Add option to rotate X-axis labels; demonstrate in grid exampleKurt
2018-04-03Correct label alignmentKurt
2018-04-03Add option to place chart labels outside of grid boundary. Make this the defaultKurt
2018-04-01Add absolute value versions of Ht and Wd methodsKurt
2018-04-01Emit Fill/Draw/Text color codes only if changed from current valueKurt
2018-03-26Clarify documentation for RGBType and RGBATypeKurt
2018-03-23Merge branch 'sbinet-gonum-detect-close-error'Kurt
2018-03-23font: make sure error on close or write are detectedSebastien Binet
2018-03-20Correct ending condition of Plot methodKurt
2018-03-19Change StatePut to method of StateType named PutKurt
2018-03-19Fix typo, mention charting facility in home pageKurt
2018-03-19Add charting facilityKurt
2018-02-03Acknowledge Andy Bakun's fix for catalog sortKurt
2018-02-03Merge branch 'thwarted-stable-obj-ordering'Kurt
2018-02-03sort the objs in the output more consistentlyAndy Bakun
When CatalogSort is enabled, the sort.Strings routine is used to order the "keys" used for the various objects being put into the PDF. Use sort.SliceStable instead, and specify a function Less function that, if possible, uses an attribute of the objs being sorted. This is more deterministic.
2018-01-31Merge branch 'moogle19-add_consts'Kurt
2018-01-31Move consts into defKevin Seidel
2018-01-31Merge branch 'master' of https://github.com/jung-kurt/gofpdfKevin Seidel
2018-01-31Rename types to constKevin Seidel
2018-01-08Acknowledge David Fish's generic alias replacement contribution; change test ↵Kurt
name so that example hang's off of RegisterAlias method in documentation
2018-01-08Merge branch 'dsfish-df-table-of-contents'Kurt
2018-01-08Added generic alias-replacement function to enable Table of Contents ↵David Fish
functionality
2018-01-02Merge branch 'master' of https://github.com/jung-kurt/gofpdfKevin Seidel
2018-01-02Add constants for Orientation, Alignment, ...Kevin Seidel
2017-12-21Merge branch 'danmeyers-get-barcode-dims_prevent-scaling'Kurt
2017-12-21Merge branch 'get-barcode-dims_prevent-scaling' of ↵Kurt
https://github.com/danmeyers/gofpdf into danmeyers-get-barcode-dims_prevent-scaling
2017-12-20make barcode scaling optional, provide a method to get unscaled barcode ↵Dan Meyers
dimensions
2017-12-02Add consts for page orientations (#150)Paweł Słomka
2017-11-24Merge branch 'wgliang-master'Kurt
2017-11-24Replace strings.Index with strings.ContainsWang Guoliang