有人知道计算编码数据所需的二维码版本的逻辑吗?
该规范有 4 个这样的表: http://www.denso-wave.com/qrcode/vertable1-e。 制定
我想知道是否有人编写了一些代码来
计算一串数据所需的版本。我见过的用于编码数据的库都没有提供此功能。
The spec has 4 of these tables:
http://www.denso-wave.com/qrcode/vertable1-e.html
to handle versions 1-40
I'm wondering if anyone has coded something to formulate calculating the version needed for a string of data. None of the libraries I've seen for encoding the data offer this.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
http://code.google.com/p/jsqrencode/downloads/list
里面是 genframe,它找到适合字符串的最小版本。
它并不真正使用公式,只是线性测试(也许 bsearch 会更快)。没有算法或方程,也不可能真正实现(紧凑),因为表格使用固定值并且不是通过算法生成的。
http://code.google.com/p/jsqrencode/downloads/list
Inside is genframe that finds the smallest version that a string will fit in.
It doesn't really use a formula, simply tests linearly (maybe a bsearch would be faster). There is no algorithm or equation nor is one (compact) really possible since the tables use fixed values and aren't algorithmically generated.