summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2019-05-06Reorganize documentation slightly. Place utf-8 feature more prominently.Kurt
2019-05-06Convey changes made in README to doc/document.txt so pandoc can generate ↵Kurt
README and doc.go
2019-05-06Adjust method comments to coform with Go documentation standardsKurt
2019-05-06Merge branch 'ArtemKor-master'Kurt
2019-05-06Merge ArtemKor' UTF-8 pull requestKurt
2019-05-06Added "right to left" languages support.DarkFreedman
2019-05-06Added copyrights. And "right to left" languages support.DarkFreedman
2019-05-04Use Pandoc to generate README and doc.goKurt
2019-04-30Reinstate badgesKurt
2019-04-30Correct spacing after listKurt
2019-04-30Correct link for go vetKurt
2019-04-30Modify some link targetsKurt
2019-04-30Remove README templateKurt
2019-04-30Try again to remove badges in READMEKurt
2019-04-30Remove badges in READMEKurt
2019-04-30Use Lua script to generate README, doc.go and index.html rather than autoreadmeKurt
2019-04-29Add go version in go.modKurt
2019-04-29Add SetFontStyle method (#248)Joe Westcott
2019-04-19Added full support for UTF-8 font. With MIT license.DarkFreedman
2019-04-17Merge branch 'Anka2310-patch-1'Kurt
2019-04-17Anka2310's modified fix for the right justify bugKurt
2019-04-17Fix right alignmentAnka2310
width has already been reduced by left and right margin, so right margin doesn't need to be subtracted twice
2019-04-10Add watermark exampleKurt
2019-04-09Add PageCount() methodKurt
2019-03-09Factored pattern draw for transformation / graphic state testKurt
2019-03-09Merge branch 'joewestcott-graphics-state-checks'Kurt
2019-03-08Remove additional graphics state checksJoe Westcott
2019-03-06Unconditionally 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-28Use local instance of random number generator so example documents are ↵Kurt
reproducable
2019-02-28Refer to example in SetPage() documentation.Kurt
2019-02-28Merge branch 'ykamo001-master'Kurt
2019-02-27added example for SetPage method of fpdfykamo001
2019-02-27cleanup for pull requestYash Kamothi
2019-02-27added functionality to change the current page in the pdf documentYash Kamothi
2019-02-21Acknowledge word spacing authorKurt
2019-02-21Merge branch 'wmatusiak-WordSpacing'Kurt
2019-02-21Add example usage for SetWordSpacingWojciech Matusiak
2019-02-21Match precision of word spacing with rest of code.Wojciech Matusiak
2019-02-21Adds the ability to set word spacing.Wojciech Matusiak
2019-02-04Merge branch 'joewestcott-svg-closepath'Kurt
2019-02-04SVG closepath supportJoe Westcott
2019-01-09readme: add missing "go" marker (#225)Kirill Motkov
2018-12-27Reference SubWrite exampleKurt
2018-12-27Support subscripted and superscripted text with new SubWrite methodKurt
2018-12-22Updated 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-17Fixed 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-17Merge branch 'd1ngd0-ftr/tplf'Kurt
2018-12-17Refactored Encode and Decode functions, Fixed Template ID ConflictsPaul 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-12Added 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-11Fix 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