大约有 11 项符合查询结果(耗时:0.0077秒) [XML]
Using ZXing to create an Android barcode scanning app [duplicate]
...
The ZXing project provides a standalone barcode reader application which — via Android's intent mechanism — can be called by other applications who wish to integrate barcode scanning.
The easiest way to do this is to call th...
Integrate ZXing in Android Studio
...
I was integrating ZXING into an Android application and there were no good sources for the input all over, I will give you a hint on what worked for me - because it turned out to be very easy.
There is a real handy git repository that provide...
Integrating the ZXing library directly into my Android application
...Install Apache Ant - (See this YouTube video for config help)
Download the ZXing source from ZXing homepage and extract it
With the use of Windows Commandline (Run->CMD) navigate to the root directory of the downloaded zxing src.
In the commandline window - Type ant -f core/build.xml press enter ...
How can I scan barcodes on iOS?
... the iPhone. It can decode QR Codes. The source code is available from the zxing project; specifically, you want to take a look at the iPhone client and the partial C++ port of the core library. The port is a little old, from circa the 0.9 release of the Java code, but should still work reasonably w...
How to launch an Activity from another Application in Android
... my app if someone finds it useful
Intent intent = new Intent("com.google.zxing.client.android.SCAN");
intent.setPackage("com.google.zxing.client.android");
try
{
startActivityForResult(intent, SCAN_REQUEST_CODE);
}
catch (ActivityNotFoundException e)
{
//implement prompt dialog asking ...
条码扫描器组件扫描时报错:Your device does not have a scanning applica...
...码机。 如果为 假,则将会使用已集成到 App Inventor 中的 ZXing 的某个版本(注:ZXing是一个开源Java类库用于解析多种格式的1D/2D条形码)。
[/hide]
Dynamically generating a QR code with PHP [closed]
...($codeContents, $pngAbsoluteFilePath);
2. QR code decoder
See also the zxing decoder:
http://zxing.org/w/decode.jspx
Pretty useful to check the output.
3. List of Data format
A list of data format you can use in your QR code according to the data type :
Website URL: http://stackoverflow.co...
传感器组件 · App Inventor 2 中文网
...码机。 如果为 假,则将会使用已集成到 App Inventor 中的 ZXing 的某个版本(注:ZXing是一个开源Java类库用于解析多种格式的1D/2D条形码)。
事件
扫描结束(返回结果)
表示扫描仪已读取(文本)结果并提供结果。
方法
...
AppInventor有没有扫二维码的功能? - App应用开发 - 清泛IT社区,为创新赋能!
...,就是直接利用设备的摄像头进行条码的识别,内部采用ZXing(Java库)进行条码的解析。
add maven repository to build.gradle
...You made my day, thank you very much. Also, why this isn't in the official ZXing gh page? It shouldn't be so hard to find...
– Nadia Castelli
Apr 15 '17 at 17:05
...