Age | Commit message (Collapse) | Author | |
---|---|---|---|
2017-02-11 | Accept interfaces where appropriate. (#103) | dchapes | |
* Accept interfaces where appropriate. `Fpdf.RawWriteBuf` only needs an `io.Reader`, it doesn't have to be a `bytes.Buffer`. The only reason I can see not to do this is to avoid the interface "boxing" if the caller is actually using a `bytes.Buffer`; however, since eventually this gets into `binary.Read` which takes an `io.Reader` the boxing will happen anyway (and possibly repeatedly if `readByte` gets called a number of times; I didn't bother to check). * Also use interface for segmentRead * Use read-only bytes.Reader instead of bytes.Buffer where appropriate. | |||
2016-12-27 | List barcode generation as feature | Kurt | |
2016-12-27 | Add support for Aztec barcodes (#101) | Ruud Kamphuis | |
* Add RegisterAztec * Add test for RegisterAztec | |||
2016-12-16 | Merge branch 'master' of https://github.com/jung-kurt/gofpdf | Kurt | |
2016-12-16 | Clarify state of current position after call to MultiCell(). Thanks, Roger ↵ | Kurt | |
Flores | |||
2016-12-10 | Added A1 and A2 page sizes (#98) | Vinayak Nagpal | |
2016-12-09 | Add page size for A6 (#97) | Sebastian Müller | |
2016-12-02 | Acknowledge Guillermo Pascual's alignment enhancement | Kurt | |
2016-12-02 | Issue #53 - Support for <RIGHT> alignment tag on basic HTML (#95) | Guillermo Pascual | |
* Added <RIGHT> tag support to the html basic parser. Also added a test line for the RIGHT alignment on fpdf_test ExampleFpdf_HTMLBasicNew * Updated the reference PDF for HTMLBasicNew | |||
2016-11-26 | Include golint in standard check | Kurt | |
2016-11-13 | Change reference to new license filename | Kurt | |
2016-11-13 | Delete LICENSE | Kurt Jung | |
Effectively rename LICENSE to license.txt to comply with github's convention for license file names. | |||
2016-11-13 | Create license.txt | Kurt Jung | |
Comply with silly github convention that requires license name to have "txt" or "md" extension. | |||
2016-11-12 | Document the TIFF image functions. Correct related documentation. | Kurt | |
2016-11-11 | Adjust some names of test functions to conform with Go's naming conventions | Kurt | |
2016-11-10 | Add package description | Kurt | |
2016-11-10 | Support standard tiff images | Kurt | |
2016-11-07 | Use struct keywords in examples of fpdf_test to comply with go vet (#90) | Wilk | |
Good catch, @flibustenet -- thanks! | |||
2016-11-06 | flibustenet's example that demonstrates clipped table cells and wrapped ↵ | Kurt | |
table cells | |||
2016-11-06 | Add tables examples ClippedTableCells and WrappedTableCells | Wilk | |
2016-10-12 | added mutex to barcode cache (#85) | Ruben | |
to prevent race condition | |||
2016-10-11 | Include ... in go get command | Kurt | |
2016-09-08 | Adding support CMYK in parsejpg (#81) | midiland | |
* adding support CMYK in jpg parseur * adding support CMYK in parsejpg * clear code debug * Clear code * Clear code | |||
2016-08-18 | Allow 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-08-01 | Check for error in ghostscript example | Kurt | |
2016-07-30 | Correct names of various CellFormat examples and generated files | Kurt | |
2016-07-30 | Change example test function name to comply with go vet | Kurt | |
2016-07-30 | Check for error in ghostscript example | Kurt | |
2016-07-30 | Correct example function name | Kurt | |
2016-07-30 | Fix some glitches reported by goreportcard.com | Kurt | |
2016-07-30 | Fix some typos and other goreportcard violations | Kurt | |
2016-07-30 | Fix lint violation in documentation | Kurt | |
2016-07-30 | Makefile for generating embedded calligra font file | Kurt | |
2016-07-30 | Acknowledge Paulo Coutinho for static embedded font support. | Kurt | |
2016-07-30 | Merge branch 'prsolucoes-master' | Kurt | |
2016-07-30 | Isolate embedded font data | Kurt | |
2016-07-28 | adding support to embedded fonts as byte array | Paulo Coutinho | |
2016-07-28 | adding support to embedded fonts as byte array | Paulo Coutinho | |
2016-07-03 | Merge pull request #78 from chris-ramon/patch-1 | Kurt Jung | |
fpdf: typo | |||
2016-07-03 | fpdf: typo | Chris Ramón | |
typo fix | |||
2016-06-30 | Merge branch 'waldyrious-patch-1' | Kurt | |
2016-06-30 | Change ISC to MIT | Kurt | |
2016-06-30 | Add title to license | Kurt | |
2016-06-30 | add license title | Waldir Pimenta | |
It's not strictly required, but it's useful metadata, and part of the recommended license template text (see http://choosealicense.com/licenses/isc/ and https://opensource.org/licenses/isc-license) | |||
2016-06-05 | Copy fonts maps to template in order for font styles to work. Thanks, geekpex. | Kurt | |
2016-06-05 | Add Font resource declaration to templates. Thank you geekpex | Kurt | |
2016-05-16 | Reinstate OSX test with Travis CI | Kurt | |
2016-05-16 | Use go1.6.2 rather than development tip | Kurt | |
2016-05-16 | Temporarily remove OSX from Travis CI | Kurt | |
2016-05-16 | Merge branch 'ruudk-pdf417'. This provides support for PDF417 barcodes. | Kurt | |