scanning

How to use IKScannerDeviceView in Cocoa

孤街浪徒 提交于 2020-12-29 07:21:07
问题 How can I use IKScannerDeviceView to scan a document inside of my app? I tried adding an IKScannerDeviceView into my view through IB and setting its delegate to my app delegate (which implements the IKScannerDeviceViewDelegate), but when I run the app I get a view with the buttons Show Details and Scan , and only Show Details is enabled and when I click it nothing happens. I have a scanner plugged in and I can scan through Image Capture, but not through my app. Does anybody have a good

Browser based document scanning

核能气质少年 提交于 2020-08-03 09:10:29
问题 I am building a browser based application for document scanning. I have looked at offerings from multiple providers like dynamosoft, asprise, atalasoft etc. My basic question on browser based document scanning is that does any of these products enable scanning from remote machines, using browser based interface? Or should scanner be always connected to the system from where browser is launched? 回答1: Yes. Browser based document scanning relies on the communication between a local service and

How BarCode,QR Code are recognized without capturing the image?

我们两清 提交于 2020-02-08 06:54:22
问题 I wonder how Bar Code and QR Code (even character) are recognized without capturing it.I have seen in many app, when we keep our device above any of these (QR/Bar Code), the app automatically recognize it and starts processing. Is there any scanning mechanism used for this? How this can be achieved? What are mechanism involving in this? Thanks in advance. 回答1: 1) The phone camera will be launched by the library it will autofocus and scans until it finds the decoded info from the image

Proceed Transaction if card number is found in the database?

≯℡__Kan透↙ 提交于 2020-01-11 14:06:06
问题 I am new here. So, I am making a transaction page for our cashless RFID scanner system. The system works by scanning the RFID card. Once scanned, the card number would appear and get searched in the database. The search feature already works but the problem now is, what are the codes needed to make it proceed once the card number is searched. Otherwise, the transaction will not proceed if the card number is not found in the system? Screenshot of search page Screenshot of code <?php if(isset($

WIA 2.0 Duplex scanning

杀马特。学长 韩版系。学妹 提交于 2020-01-11 03:30:07
问题 Since Vista, Windows is shipped with WIA 2.0 (wiaaut.dll). According to the following KB article and many of my findings on various forums, duplex scanning is no longer possible using WIA 2.0. Yet, the article mentions the use of native WIA 2.0, what would make duplex scanning possible. (https://support.microsoft.com/en-us/kb/2709992) According to the WIA 2.0 documentation (https://msdn.microsoft.com/en-us/library/windows/desktop/ms630196(v=vs.85).aspx), duplex scanning is possible but using

How to scan for available bluetooth devices in range in android?

牧云@^-^@ 提交于 2020-01-09 09:05:02
问题 I need to get a list of available bluetooth devices in the area using google android 2.1. Thing is, i don't just need a list of those devices, i need some unique id for each device found and i need an indicator, how "good" the signal is received (like the "level" in android.wifi.ScanResult)... How do i do that? 回答1: Check out code below : Starting search mBluetoothAdapter.startDiscovery(); mReceiver = new BroadcastReceiver() { public void onReceive(Context context, Intent intent) { String

How to scan for available bluetooth devices in range in android?

孤者浪人 提交于 2020-01-09 09:04:34
问题 I need to get a list of available bluetooth devices in the area using google android 2.1. Thing is, i don't just need a list of those devices, i need some unique id for each device found and i need an indicator, how "good" the signal is received (like the "level" in android.wifi.ScanResult)... How do i do that? 回答1: Check out code below : Starting search mBluetoothAdapter.startDiscovery(); mReceiver = new BroadcastReceiver() { public void onReceive(Context context, Intent intent) { String

How do I correctly capture data from a Symbol LS2208 barcode scanner with C#

杀马特。学长 韩版系。学妹 提交于 2020-01-04 07:25:22
问题 I have been asked to develop a C# Winforms application that reads barcodes and processes data based on products with the relevant barcode. The barcode scanner we're using is a Symbol LS2208 usb scanner and when it came there was no instructions or cd in the box. We plugged it in, it beeped at us and were were able to scan barcode values into notepad as a test. In my application, how do I ensure that the scanner populates data into the relevant textbox (I've been setting focus after every

Cannot read second page scanned via ADF

陌路散爱 提交于 2020-01-03 10:55:10
问题 I have a Brother mutlifunction networked printer/scanner/fax (model MFC-9140CDN). I am trying to use the following code with WIA, to retrieve items scanned in with the document feeder: const int FEEDER = 1; var manager=new DeviceManager(); var deviceInfo=manager.DeviceInfos.Cast<DeviceInfo>().First(); var device=deviceInfo.Connect(); device.Properties["Pages"].set_Value(1); device.Properties["Document Handling Select"].set_Value(1); var morePages=true; var counter=0; while (morePages) {

Free SDK for scanning barcode (code 39 format) in iOS

眉间皱痕 提交于 2019-12-30 03:24:16
问题 I want to scan a VIN barcode, which in Code 39 format, using the camera of iphone/ipad. I tried zxing and zbar, but they don't work well. Most of time they can not recognize the barcode. Can anyone show me a better way to do that? or is there anything I can do to increase the result, because I only need scanning Code 39 (for VIN car). 回答1: use Zbar to accomplish this. In order to get enough resolution to scan, you will want to scan the barcode in landscape mode. Here are my settings (tested &