-
Methods in io.nayuki.qrcodegen that return QrCode
Modifier and Type |
Method |
Description |
static QrCode |
QrCode.encodeBinary(byte[] data,
QrCode.Ecc ecl) |
Returns a QR Code representing the specified binary data at the specified error correction level.
|
static QrCode |
QrCode.encodeSegments(java.util.List<QrSegment> segs,
QrCode.Ecc ecl) |
Returns a QR Code representing the specified segments at the specified error correction
level.
|
static QrCode |
QrCode.encodeSegments(java.util.List<QrSegment> segs,
QrCode.Ecc ecl,
int minVersion,
int maxVersion,
int mask,
boolean boostEcl) |
Returns a QR Code representing the specified segments with the specified encoding parameters.
|
static QrCode |
QrCode.encodeText(java.lang.String text,
QrCode.Ecc ecl) |
Returns a QR Code representing the specified Unicode text string at the specified error correction level.
|