我已经做了一些步骤,作为在钛Iphone中检测条形码的链接。http://code.google.com/p/tibar/在线路配置中,我做了这个链接,但它只在Iphone中显示专辑。我重新配置如下:
configure: {
classType: "ZBarReaderController",
sourceType: "Camera",
cameraMode: "Default",
symbol:{
"QR-Code":true,
}
}当点击扫描按钮时,显示camera.But检测条码的画面,摄像头无法检测到扫描到的barcode.Images条码非常清晰。如果你做了这项工作,你能帮助me..Thank
发布于 2012-09-19 06:47:16
您将QR-code设置为true,当然不应该是这样:
configure: {
classType: "ZBarReaderController",
sourceType: "Camera",
cameraMode: "Default",
symbol:{
"EAN-13":true
}
}直接取自您提供给我们的文档。
https://stackoverflow.com/questions/12477711
复制相似问题