Uses of Class
com.itextpdf.barcodes.qrcode.ErrorCorrectionLevel
Packages that use ErrorCorrectionLevel
-
Uses of ErrorCorrectionLevel in com.itextpdf.barcodes.qrcode
Fields in com.itextpdf.barcodes.qrcode declared as ErrorCorrectionLevelModifier and TypeFieldDescriptionprivate ErrorCorrectionLevel
QRCode.ecLevel
private final ErrorCorrectionLevel
FormatInformation.errorCorrectionLevel
private static final ErrorCorrectionLevel[]
ErrorCorrectionLevel.FOR_BITS
static final ErrorCorrectionLevel
ErrorCorrectionLevel.H
H = ~30% correctionstatic final ErrorCorrectionLevel
ErrorCorrectionLevel.L
L = ~7% correctionstatic final ErrorCorrectionLevel
ErrorCorrectionLevel.M
M = ~15% correctionstatic final ErrorCorrectionLevel
ErrorCorrectionLevel.Q
Q = ~25% correctionMethods in com.itextpdf.barcodes.qrcode that return ErrorCorrectionLevelModifier and TypeMethodDescriptionstatic ErrorCorrectionLevel
ErrorCorrectionLevel.forBits
(int bits) QRCode.getECLevel()
Possible error correction level values ranked from lowest error correction capability to highest: L, M, Q, H(package private) ErrorCorrectionLevel
FormatInformation.getErrorCorrectionLevel()
Methods in com.itextpdf.barcodes.qrcode with parameters of type ErrorCorrectionLevelModifier and TypeMethodDescriptionstatic void
MatrixUtil.buildMatrix
(BitVector dataBits, ErrorCorrectionLevel ecLevel, int version, int maskPattern, ByteMatrix matrix) Build 2D matrix of QR Code from "dataBits" with "ecLevel", "version" and "getMaskPattern".private static int
Encoder.chooseMaskPattern
(BitVector bits, ErrorCorrectionLevel ecLevel, int version, ByteMatrix matrix) static void
MatrixUtil.embedTypeInfo
(ErrorCorrectionLevel ecLevel, int maskPattern, ByteMatrix matrix) Embed type information into the matrixstatic void
Encoder.encode
(String content, ErrorCorrectionLevel ecLevel, QRCode qrCode) Encode "bytes" with the error correction level "ecLevel".static void
Encoder.encode
(String content, ErrorCorrectionLevel ecLevel, Map<EncodeHintType, Object> hints, QRCode qrCode) Encode "bytes" with the error correction level "ecLevel".Version.getECBlocksForLevel
(ErrorCorrectionLevel ecLevel) private static void
Encoder.initQRCode
(int numInputBytes, ErrorCorrectionLevel ecLevel, int desiredMinVersion, Mode mode, QRCode qrCode) Initialize "qrCode" according to "numInputBytes", "ecLevel", and "mode".static void
MatrixUtil.makeTypeInfoBits
(ErrorCorrectionLevel ecLevel, int maskPattern, BitVector bits) Make bit vector of type information.void
QRCode.setECLevel
(ErrorCorrectionLevel value) Set the error correction level of th QR code.