2D binary matrix representing QR code modules.
Summary
Types
@type t() :: %QQR.BitMatrix{ data: tuple(), height: non_neg_integer(), width: non_neg_integer() }
Functions
@spec from_list(non_neg_integer(), non_neg_integer(), [0 | 1]) :: t()
@spec new(non_neg_integer(), non_neg_integer()) :: t()
@spec set(t(), non_neg_integer(), non_neg_integer(), boolean()) :: t()
@spec set_region( t(), non_neg_integer(), non_neg_integer(), non_neg_integer(), non_neg_integer(), boolean() ) :: t()
Render the matrix as an SVG string. See QQR.SVG for options.
Render the matrix as SVG iodata. See QQR.SVG for options.