Documentation
¶
Overview ¶
Package qrcodes provides functions to render or format QR codes.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type Format ¶
type Format string
Format selects the text representation used to print QR codes.
const ( // FormatAuto will format QR codes to best fit the capabilities of the // [io.Writer]. FormatAuto Format = "auto" // FormatASCII will format QR codes with only ASCII characters. FormatASCII Format = "ascii" // FormatLarge will format QR codes with full block characters. FormatLarge Format = "large" // FormatSmall will format QR codes with full and half block characters. FormatSmall Format = "small" )
Click to show internal directories.
Click to hide internal directories.