Releases: yeqown/go-qrcode
Releases · yeqown/go-qrcode
v1.5.6
(2021-07-07)
Bug Fixes
- #28 analyzeMode skip one byte to analyze while encMode upgraded. (1756b35)
v1.5.5
Fixed:
- #24 foreground color is not applied on
finder
block ed9ad45
v1.5.3
Features
- export some methods to
DrawContext
and add example to WithCustomShape
option (cd291f9)
- no custom shape to finder avoid matrix identify failures. (819ddae)
v1.5.2
Fixes:
- #17 fixed, support higher version
6+
on alignment pattern.
- fix test cases that could not be running in parallel.
- fix some comment and function spelling mistakes
- fix
fillVersionInfo
function which put version information into the matrix with the wrong order.
v1.5.1
fixes:
- #16
New
and NewWithSpecV
API panics without default ImageEncoder
, now using _defaultOutputOption
instead of new(outputImageOptions)
v1.5.0
features:
- extract
ImageEncoder
interface to support outputting image file format.
WithBuiltinImageEncoder
for using builtin ImageEncoder, such as JPEG
, PNG
WithCustomImageEncoder
for custonmizing ImageEncoding
fixes:
- the rectangle shape draws incorrectly with width and height. As #14 describes, it caused the images' right and bottom without border.
v1.4.1
feat:
- supplement full QR version configs
v1.4.0
features:
- Abstract QR code block into
IShape
(rectangle / circle / custom).
- Using
github.com/fogleman/gg
library to draw QR Code image and each block shape.