编码算法 QR 码
谁知道如何生成二维码? 以及如何像这里http://mojiq.kazina.com/一样装饰?
Who knows how to generate qr-code?
And how to decorate like here http://mojiq.kazina.com/?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
试试这个教程 http://www.thonky.com/qr- code-tutorial/,关于创建 QR 码的非常好的深入教程,但仅适用于某种类型的 QR 码。
try this tutorial http://www.thonky.com/qr-code-tutorial/, very good in-depth tutorial on creating QR-codes, but only for a certain type of QR-code.
大多数时候,问题是有限域算法,因为它有点不同。一旦生成器开始工作,纠错技术就更难看出代码是否正确生成。还有另一个网站有 ECC 生成器: http://www.pclviewer.com/rs2/calculator .html
但请注意,该生成器也并非在所有情况下都能正常工作,与 Thonky 的错误代码校正生成器相同。
我制作的一个小项目允许逐步调试并跟踪 QRCode 的创建并手动更改所有参数 - 这是网络上的生成器无法做到的。链接:https://github.com/Legoless/QRCode
Most of the time, the problem is the Finite-Field arithmetic, because it is a little bit different. And once you have the generator working, the error-correction techniques make it harder to see if the code is generated correctly. There is another site which has ECC generator: http://www.pclviewer.com/rs2/calculator.html
But note that this generator also does not work correctly in all cases, same as Thonky's error code correction generator.
A small project I made allows step-by-step debugging and following the creation of the QRCode and manually changing all the parameters - something no generator on web does. The link: https://github.com/Legoless/QRCode
您可以使用 ZXing 的 GAE 应用在浏览器中生成二维码,或者下载 Java 库并在您自己的代码中使用
zxing.appspot.com
组件。You can use ZXing's GAE app to generate QR codes in a browser, or download the Java library and use the
zxing.appspot.com
component in your own code.您可以使用 QR 符号系统的 JavaScript 实现,它是 此处。
您可以在下面的演示中看到基于它的jquery QR插件实现。
you can use the JavaScript implementation of a QR symbology, which is part of the ShieldUI open source package available here.
You can see a jquery QR plugin implementation based on it in the following demo.