本文整理汇总了Java中com.google.zxing.qrcode.decoder.Version.getVersionForNumber方法的典型用法代码示例。如果您正苦于以下问题:Java Version.getVersionForNumber方法的具体用法?Java Version.getVersionForNumber怎么用?Java Version.getVersionForNumber使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类com.google.zxing.qrcode.decoder.Version
的用法示例。
在下文中一共展示了Version.getVersionForNumber方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: chooseVersion
import com.google.zxing.qrcode.decoder.Version; //导入方法依赖的package包/类
private static Version chooseVersion(int numInputBits, ErrorCorrectionLevel ecLevel) throws WriterException {
// In the following comments, we use numbers of Version 7-H.
for (int versionNum = 1; versionNum <= 40; versionNum++) {
Version version = Version.getVersionForNumber(versionNum);
// numBytes = 196
int numBytes = version.getTotalCodewords();
// getNumECBytes = 130
Version.ECBlocks ecBlocks = version.getECBlocksForLevel(ecLevel);
int numEcBytes = ecBlocks.getTotalECCodewords();
// getNumDataBytes = 196 - 130 = 66
int numDataBytes = numBytes - numEcBytes;
int totalInputBytes = (numInputBits + 7) / 8;
if (numDataBytes >= totalInputBytes) {
return version;
}
}
throw new WriterException("Data too big");
}
示例2: chooseVersion
import com.google.zxing.qrcode.decoder.Version; //导入方法依赖的package包/类
private static Version chooseVersion(int numInputBits, ErrorCorrectionLevel ecLevel) throws WriterException {
for (int versionNum = 1; versionNum <= 40; versionNum++) {
Version version = Version.getVersionForNumber(versionNum);
if (willFit(numInputBits, version, ecLevel)) {
return version;
}
}
throw new WriterException("Data too big");
}
示例3: chooseVersion
import com.google.zxing.qrcode.decoder.Version; //导入方法依赖的package包/类
private static Version chooseVersion(int numInputBits, ErrorCorrectionLevel ecLevel) throws
WriterException {
for (int versionNum = 1; versionNum <= 40; versionNum++) {
Version version = Version.getVersionForNumber(versionNum);
if (version.getTotalCodewords() - version.getECBlocksForLevel(ecLevel)
.getTotalECCodewords() >= (numInputBits + 7) / 8) {
return version;
}
}
throw new WriterException("Data too big");
}