在 Android 手机屏幕上显示 QRCODE 图像

发布于 2024-11-19 09:13:18 字数 70 浏览 2 评论 0原文

我想为字符串生成二维码。在我在论坛中找到的情况下,生成的 QR 正在生成图像。我希望 QR 码显示在屏幕上,而无需保存其副本。

I want to generate a QR code for a string. In the cases I find in the forum, The generated QR is generating an image. I want the QR code to display on the screen with out having to save a copy of it.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

骄傲 2024-11-26 09:13:18

当然,可以在运行时生成二维码图像。例如,网站“Wolfram Alpha”就是这样做的。试试这个网址:

http://www.wolframalpha.com/ input/?i=qr+code+www.stackexchange.com

因此,如果您可以调用该网站并捕获其输出,那么您就可以在您的应用中显示二维码。

另一个潜在来源可能是http://zxing.appspot.com/generator/

Of course it is possible to generate a QR code image at runtime. For instance, the website "Wolfram Alpha" does it. Try this URL:

http://www.wolframalpha.com/input/?i=qr+code+www.stackexchange.com

So if you can call that website and capture its output, then you can display the QR code in your app.

Another potential source could be http://zxing.appspot.com/generator/.

风追烟花雨 2024-11-26 09:13:18

zxing 项目的代码为 对二维码进行编码。只要遵循 Apache 许可证,您就可以使用和嵌入此代码。条码扫描仪在屏幕上显示二维码;您可以在同一项目中查看其源代码以了解如何执行此操作。

The zxing project has code to encode QR codes. You can use and embed this code, as long as you follow the Apache License. Barcode Scanner displays QR codes on screen; you can look at its source in the same project to see how to do that.

假装不在乎 2024-11-26 09:13:18

生成二维码最简单的方法之一是使用 Google Charts API。以下是包含相关文档的页面 - http://code.google.com/ apis/chart/infographics/docs/qr_codes.html

以下是“Hello world”QR 码的快速示例,150x150 像素:
https://chart.googleapis.com /chartchs=150x150&cht=qr&chl=Hello%20world&choe=UTF-8

它如果在网络应用程序(浏览器内)中使用,效果最好。否则,您必须通过网络连接加载图像。

One of the easiest way to generate QR code is to use Google Charts API. Here is page with relevant documentation - http://code.google.com/apis/chart/infographics/docs/qr_codes.html

Here is quick example of QR code for "Hello world", 150x150 pixels:
https://chart.googleapis.com/chartchs=150x150&cht=qr&chl=Hello%20world&choe=UTF-8

It works the best if it is used in web app (inside browser). Otherwise you have to load the image over the web connection.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文