如何将条码扫描仪直接集成到我的应用程序上?

发布于 2024-12-06 03:04:00 字数 53 浏览 1 评论 0原文

这里有人知道如何将条形码扫描直接集成到应用程序中,而无需安装单独的 ZXing 应用程序吗?

Does anyone here knows how to to integrate barcode scanning directly into an application without having the separate ZXing application installed?

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

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

发布评论

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

评论(2

染年凉城似染瑾 2024-12-13 03:04:00

条码扫描仪的完整源代码位于:http://code.google.com/p/zxing

作为库的开发人员,我可以告诉您,当有人尝试将我们的源代码集成到他们的应用程序中时,95% 的情况下会发生两种情况:

  • 他们发现调整代码以及集成和维护需要相当多的工作在他们自己的应用程序中进行扫描,并且他们使用Intent API
  • 他们复制并粘贴我们的代码并尝试通过这种方式制作“他们自己的”应用程序,

我可以告诉您我们不希望开发人员复制并粘贴我们的源代码。除非您是一位经验丰富的 Android 开发人员,否则您将很难自行重新发明扫描应用程序

底线:省去麻烦并通过 Intent 集成:http://code.google.com/p/zxing/wiki/ScanningViaIntent

The complete source code to Barcode Scanner is here: http://code.google.com/p/zxing

As a developer of the library, I can tell you that two things happen in 95% of cases where someone tries to integrate our source code into their app:

  • They find it's quite a bit of work to adapt the code and integrate and maintain the scanning in their own app, and they use the Intent API
  • They copy and paste our code and try to make "their own" app this way

I can tell you we do not want developers to copy and paste our source code. And unless you're an experienced Android dev, you will have trouble re-inventing a scanning app on your own

Bottom line: save yourself the trouble and integrate via Intent: http://code.google.com/p/zxing/wiki/ScanningViaIntent

夏夜暖风 2024-12-13 03:04:00

尝试使用Google Chart工具api,它非常简单,我有一个我不久前写的函数:

function get_QR_code($content = null,$size = null,$ImgTag = true){
    if ($size == null){
        $size = '150x150';
    }
    if ($ImgTag){
        echo '<img src="http://chart.apis.google.com/chart?cht=qr&chs='.$size.'&choe=UTF-8&chld=H&chl='.$content .'">';
    }else{
        return 'http://chart.apis.google.com/chart?cht=qr&chs='.$size.'&choe=UTF-8&chld=H&chl='.$content;
    }
}

<?php get_QR_code('Hello form Google API'); ?>

try to use the Google Chart tool api its very simple, i have a function that i wrote a while back:

function get_QR_code($content = null,$size = null,$ImgTag = true){
    if ($size == null){
        $size = '150x150';
    }
    if ($ImgTag){
        echo '<img src="http://chart.apis.google.com/chart?cht=qr&chs='.$size.'&choe=UTF-8&chld=H&chl='.$content .'">';
    }else{
        return 'http://chart.apis.google.com/chart?cht=qr&chs='.$size.'&choe=UTF-8&chld=H&chl='.$content;
    }
}

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