Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-08-15 | fix checks | matthias | |
2019-08-15 | add simple test for data race detection | matthias | |
2019-08-15 | add simple example | matthias | |
2019-08-15 | wrap contrib/gofpdi:realgofpdi.Importer | matthias | |
* allow for multiple independent Importer instances * keep a default Importer for backwards compatibility * add package level comment | |||
2019-08-12 | Corrected comment to match function name | Kurt | |
2019-08-09 | update contrib/gofpdi from v1.0.3 to v1.0.7 and expose new functionality | matthias | |
* imports pdf documents from any io.ReadSeeker * exposes page sizes of imported pdf documents | |||
2019-05-22 | maintain precision of desired w & h of barcodes | Justin Schlechte | |
This fixes an issue with barcode scaling that limited barcode sizes to integer multiples of the pdf's unit. | |||
2019-05-18 | Generalize awk script that produces doc.go | Kurt | |
2019-05-15 | Clean up code based on jung-kurt's feedback. | Dave Barnes | |
2019-05-15 | Add support for imported objects and templates to version 1 of gofpdf. | Dave Barnes | |
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-08-01 | barcode: Scale via the PDF rather than the barcode library | Andre Renaud | |
This allows arbitrary barcode scaling, rather than whole multiple as required by github.com/boombuler/barcode | |||
2017-12-20 | make barcode scaling optional, provide a method to get unscaled barcode ↵ | Dan Meyers | |
dimensions | |||
2017-06-10 | prevent panic when registering barcode fails (#118) | Dan Meyers | |
2016-12-27 | Add support for Aztec barcodes (#101) | Ruud Kamphuis | |
* Add RegisterAztec * Add test for RegisterAztec | |||
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-10-12 | added mutex to barcode cache (#85) | Ruben | |
to prevent race condition | |||
2016-07-30 | Check for error in ghostscript example | Kurt | |
2016-05-16 | Enhance documentation and add test for PDF417 barcode | Kurt | |
2016-05-16 | Pass columns and security level to Encode method | Ruud Kamphuis | |
2016-05-15 | Add support for Pdf417 barcodes | Ruud Kamphuis | |
2016-02-18 | Factor example filenames | Kurt | |
2016-02-18 | Comment about command | Kurt | |
2016-02-18 | Demonstration of PDF size reduction with ghostscript | Kurt | |
2015-09-10 | HttpImg: make Http specific PDF interface. | Jelmer Snoeck | |
Instead of forcing the type to be of gofpdf.Fpdf, we now use an interface which could be whatever structure we want. This is useful for third party libraries where they can define their own interface for the PDF generator but still use these contribution packages. HttpImg: add interface comment. Barcode: implement specific PDF interface. | |||
2015-08-31 | Add Barcode contribution package. | Jelmer Snoeck | |
This package adds the ability to easily add a barcode to the PDF. This barcode is generated with the github.com/boombuler/barcode package. It adds wrappers for all the available barcode types through the `Register()` and `Register<Type>()` methods. These register methods put the barcode on the PDF, but not on the page. They will return a unique key that should be used later on with the `Barcode()` method scale the barcode and put it on the page. | |||
2015-08-27 | Maintain aspect ratio of registered image | Kurt Jung | |
2015-08-27 | Httpimg: remove pdf folder. | Jelmer Snoeck | |
This will now be generated in the main pdf folder (`gofpdf/pdf`). | |||
2015-08-27 | Use internal example package for testing. | Jelmer Snoeck | |
2015-08-26 | Httpimg: cleanup pdf path on with tests. | Jelmer Snoeck | |
2015-08-26 | Examples: rename function/file for clarification. | Jelmer Snoeck | |
2015-08-26 | HttpImg: use `Register` method. | Jelmer Snoeck | |
By changing the name, we can use a uniform name across several packages. | |||
2015-08-26 | Httpimg: rename package. | Jelmer Snoeck | |
2015-08-24 | Use RegisterHttpImage instead of RegisterRemoteImage. | Jelmer Snoeck | |
Remote can mean several things, HTTP is more specific and matches the actual implementation. | |||
2015-08-24 | Use `GetImageInfo` to see if the image is already registered. | Jelmer Snoeck | |
2015-08-19 | Fhttp: add RegisterRemoteImage functionality. | Jelmer Snoeck | |
This is a wrapper around manually having to download the image and registering it. It registers an image based on it's URL, it will download that image and add it to the PDF. It will however not add it immediately to the page. This is done by calling `Image()` with the same URL. |