Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-04-17 | Merge branch 'Anka2310-patch-1' | Kurt | |
2019-04-17 | Anka2310's modified fix for the right justify bug | Kurt | |
2019-04-17 | Fix right alignment | Anka2310 | |
width has already been reduced by left and right margin, so right margin doesn't need to be subtracted twice | |||
2019-04-10 | Add watermark example | Kurt | |
2019-04-09 | Add PageCount() method | Kurt | |
2019-03-09 | Factored pattern draw for transformation / graphic state test | Kurt | |
2019-03-09 | Merge branch 'joewestcott-graphics-state-checks' | Kurt | |
2019-03-08 | Remove additional graphics state checks | Joe Westcott | |
2019-03-06 | Unconditionally assign colors (fill, text and draw) and line width, cap ↵ | Kurt | |
style and line join style so that the manipulation of these properties in transformations, which begin with default values, will work as intended. Add example to demonstrate expected results. | |||
2019-02-28 | Use local instance of random number generator so example documents are ↵ | Kurt | |
reproducable | |||
2019-02-28 | Refer to example in SetPage() documentation. | Kurt | |
2019-02-28 | Merge branch 'ykamo001-master' | Kurt | |
2019-02-27 | added example for SetPage method of fpdf | ykamo001 | |
2019-02-27 | cleanup for pull request | Yash Kamothi | |
2019-02-27 | added functionality to change the current page in the pdf document | Yash Kamothi | |
2019-02-21 | Acknowledge word spacing author | Kurt | |
2019-02-21 | Merge branch 'wmatusiak-WordSpacing' | Kurt | |
2019-02-21 | Add example usage for SetWordSpacing | Wojciech Matusiak | |
2019-02-21 | Match precision of word spacing with rest of code. | Wojciech Matusiak | |
2019-02-21 | Adds the ability to set word spacing. | Wojciech Matusiak | |
2019-02-04 | Merge branch 'joewestcott-svg-closepath' | Kurt | |
2019-02-04 | SVG closepath support | Joe Westcott | |
2019-01-09 | readme: add missing "go" marker (#225) | Kirill Motkov | |
2018-12-27 | Reference SubWrite example | Kurt | |
2018-12-27 | Support subscripted and superscripted text with new SubWrite method | Kurt | |
2018-12-22 | Updated font id generation and image id (#222) | Paul Montag | |
Generated font ID will now be the same across machines when generating the same font file. Generated image Id will now be the same across machines when generating the same image file. | |||
2018-12-17 | Fixed id collisions with fonts when encoding and decoding (#220) | d1ngd0 | |
- Made font id a string which is a sha1 sum of the contents of the json file. | |||
2018-12-17 | Merge branch 'd1ngd0-ftr/tplf' | Kurt | |
2018-12-17 | Refactored Encode and Decode functions, Fixed Template ID Conflicts | Paul Montag | |
- Updated Encode and Decode to ensure templates and images are pointers to the original objects - Refactored so encoding no longer has to create p and o labels for images - removed id from template and generate it using Bytes instead. | |||
2018-12-12 | Added the ability to have multiple pages in a template (#216) | d1ngd0 | |
* Added the ability to have multiple pages in a template Templates are now aware of the number of pages they have. The main additions are the FromPage and FromPages methods which allow you to extract a Template from a template if you pass in the page number. It follows the same page mechanism as FPDF where pages start in the index 1. * Update fpdf_test.go | |||
2018-12-11 | Fix comments according to best practices by effective go (#217) | CodeLingo Bot | |
* Fix comments according to best practices by effective go * Update font.go * Update fpdf_test.go * Update fpdf.go * Update example.go * Update util.go | |||
2018-12-04 | Fixed the Pdf interface to be implemented by Fpdf and Tpl again. Added tests ↵ | d1ngd0 | |
to ensure they will always implement (#212) | |||
2018-11-21 | Merge branch 'master' of https://github.com/jung-kurt/gofpdf | Kurt | |
2018-11-21 | Center tables in example | Kurt | |
2018-11-16 | Make SplitLines and MultiCell split at the same place (#210) | Wilk | |
* Make SplitLines and MultiCell split at the same place * Use integer math for SplitLines and MultiCell | |||
2018-11-10 | Change name of page box example so it is linked from SetPageBox() in ↵ | Kurt | |
documentation | |||
2018-11-10 | Add an example for Paul Montag's page box feature | Kurt | |
2018-11-10 | Merge branch 'd1ngd0-ftr/boxes' | Kurt | |
2018-11-10 | Simplify example and display output from 'pdfinfo -box' | Kurt | |
2018-11-10 | Merge branch 'd1ngd0-ftr/gob' | Kurt | |
2018-11-10 | Added some comments to new encoding/decoding methods | Kurt | |
2018-11-10 | Merge branch 'ftr/gob' of https://github.com/d1ngd0/gofpdf into d1ngd0-ftr/gob | Kurt | |
2018-11-10 | Demonstrate page boxes | Kurt | |
2018-11-08 | Fixed a stupid bug | Paul Montag | |
2018-11-08 | Added an error if an invalid box type is passed in | Paul Montag | |
2018-11-08 | Added page boxes | Paul Montag | |
2018-11-07 | Created helper functions for serialiation | Paul Montag | |
2018-11-07 | Fixed nil encoding | Paul Montag | |
2018-11-07 | Changed the byte encoding so we are no longer saving redundant data from ↵ | Paul Montag | |
pointers | |||
2018-11-05 | fixed pointer values when mutltiple templates are used | Paul Montag | |