summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2019-08-28added SVG support for quadratic curvesRichard Stöckl
2019-08-28added SVG support for horizontal and vertical linesRichard Stöckl
2019-08-23Merge branch 'joewestcott-underline'Kurt
2019-08-23Merge branch 'underline' of https://github.com/joewestcott/gofpdf into ↵Kurt
joewestcott-underline
2019-08-23Add DS_Store to gitignore (#292)Joe Westcott
2019-08-22Add test for SetUnderlineThicknessJoe Westcott
2019-08-22Add SetUnderlineThickness methodJoe Westcott
2019-08-21Merge branch 'hyzgh-master'Kurt
2019-08-21fix split line bughyzgh
Change-Id: I4fdf3b7b23fbb2340427d06a7eadd88e081effb6
2019-08-21fix split line bughyzgh
Change-Id: I224a7ec1af8386dcbef757c76389fb88316401bc
2019-08-20Merge branch 'hyzgh-master'Kurt
2019-08-20improve the speed of MultiCellhyzgh
Change-Id: Ieaacbf19acfce1e776eccbfa3bbc030a2ab93d5f
2019-08-15Merge branch 'mrtsbt-wrap-contrib-gofpdi-importer'Kurt
2019-08-15Merge branch 'wrap-contrib-gofpdi-importer' of ↵Kurt
https://github.com/mrtsbt/gofpdf into mrtsbt-wrap-contrib-gofpdi-importer
2019-08-15fix checksmatthias
2019-08-15Merge branch 'tim-st-master'Kurt
2019-08-15add simple test for data race detectionmatthias
2019-08-15add simple examplematthias
2019-08-15Add method `SetProducer`Tim S
This allows changing or removing the PDF producer string in the metadata of the PDF file.
2019-08-15wrap contrib/gofpdi:realgofpdi.Importermatthias
* allow for multiple independent Importer instances * keep a default Importer for backwards compatibility * add package level comment
2019-08-12Run go mod tidyKurt
2019-08-12Merge branch 'mrtsbt-update-contrib-gofpdi'Kurt
2019-08-12Corrected comment to match function nameKurt
2019-08-12Merge branch 'update-contrib-gofpdi' of https://github.com/mrtsbt/gofpdf ↵Kurt
into mrtsbt-update-contrib-gofpdi
2019-08-12Acknowledge Brigham Thompson's contribution.Kurt
2019-08-12Merge branch 'BeeHam-master'Kurt
2019-08-12Revise comment, fix style write, extend example for RoundedRectKurt
2019-08-11adds RoundedRect per Issue #272Brigham Thompson
2019-08-09update contrib/gofpdi from v1.0.3 to v1.0.7 and expose new functionalitymatthias
* imports pdf documents from any io.ReadSeeker * exposes page sizes of imported pdf documents
2019-07-20Merge branch 'estenssoros-ImageOptionsReader'Kurt
2019-07-20Remove ImageOptionsReader and rework example to demonstrate ↵Kurt
RegisterImageOptionsReader()
2019-07-20Use file as reader for ImageOptionsReaderKurt
2019-07-20Merge branch 'ImageOptionsReader' of https://github.com/estenssoros/gofpdf ↵Kurt
into estenssoros-ImageOptionsReader
2019-07-20Wrap some commentsKurt
2019-07-20Merge branch 'seletskiy-master'Kurt
2019-07-20Correct placement of pageWidth variableKurt
2019-07-20Merge branch 'master' of https://github.com/seletskiy/gofpdf into ↵Kurt
seletskiy-master
2019-07-18added imageoptionsreaderestenssoros
2019-07-18Revert "Merge branch 'seletskiy-master'"Kurt
This reverts commit a542cf333bc2e3e4e138bb4848f02997aba71ce9, reversing changes made to 3aaf0b1a66c0ab02d925917376898a5856061d59.
2019-07-18fix bug introduced in #279Stanislav Seletskiy
2019-07-18Merge branch 'seletskiy-master'Kurt
2019-07-18fix utf8 text wrappingStanislav Seletskiy
UTF8 text splitted correctly by SplitText function in WriteAligned method: https://github.com/jung-kurt/gofpdf/blob/3aaf0b1a66c0ab02d925917376898a5856061d59/fpdf.go#L2811 Then, lines of text are written via Write function, and if text is already wrapped by given width it will be printed using 'last chunk' case: https://github.com/jung-kurt/gofpdf/blob/3aaf0b1a66c0ab02d925917376898a5856061d59/fpdf.go#L2747,L2754 But in this case, gofpdf does not move cursor to the next cell, which cause all text to be printed on the same line without actual wrapping. This commit makes workaround for it by explicitly setting right margin to force automatic line break case: https://github.com/jung-kurt/gofpdf/blob/3aaf0b1a66c0ab02d925917376898a5856061d59/fpdf.go#L2705
2019-07-03Do not execute Multicell if instance is in error stateKurt
2019-06-23Merge branch 'tmcli-master'Kurt
2019-06-23Merge branch 'master' of https://github.com/tmcli/gofpdf into tmcli-masterKurt
2019-06-18Merge branch 'seletskiy-master'Kurt
2019-06-18Merge branch 'master' of https://github.com/seletskiy/gofpdf into ↵Kurt
seletskiy-master
2019-06-18Merge branch 'nanjj-master'Kurt
2019-06-18Demonstrate UTF8CutFont with test exampleKurt
2019-06-18WriteAligned: use SplitText for UTF-8Stanislav Seletskiy