barcode

How to scan driver's license (PDF417) using xamarin forms + zxing on iOS 10.2

点点圈 提交于 2019-11-30 18:38:14
问题 I am using Xamarin forms to write an iOS app and using the ZXing library to scan barcodes. I am trying to read a driver's license (PDF417) barcode, but the library is not able to recognize that barcode. If I include UPC or other barcodes in the PossibleFormats, they are scanned correctly. I am also certain the barcode I am trying to read is PDF417 barcode because Scandit is able to recognize it correctly while using only PDF417 barcode. Here is the code I am using. What do I need to change so

Save generated bar code image in database and in folder using codeigniter

ぃ、小莉子 提交于 2019-11-30 16:41:49
I have used library to generate barcode. Bar code is generated but problem is that how can i save that generated image? Here i am giving my code i have used: In controller: function add($bar_code) { $postData['bar_code'] = $this->set_barcode($postData['bar_code']); } function set_barcode($code) { $this->load->library('zend'); $this->zend->load('Zend/Barcode'); $bar_code = Zend_Barcode::render('code128', 'image', array('text'=>$code), array('imageType' => 'jpg'))->draw(); return $bar_code; } How can i save the image of generated bar code? Help as son as possible. Thanks! I got the solution :

Barcode Reader for 3G

不羁岁月 提交于 2019-11-30 16:19:18
I am newbie to iPhone application. But recently I saw a post asking for Barcode Reader for 3G iPhones. And people(including me) have referred to zxing which works on 3GS or later and if you want to make an appication for 3G then better you buy it from QuickMark or RedLaser to get 3g scanning. So I planned something and need several information from you all There are lots available on appStore. One of them is pic2shop(Which is a free application). But what I want to know is: What exactly is it done to recognize the barcode and generate code? Is there any website or link to which when image of

How to reliably detect a barcode's 4 corners?

三世轮回 提交于 2019-11-30 15:57:14
问题 I'm trying to detect this Code128 barcode with Python + zbar module: (Image download link here). This works: import cv2, numpy import zbar from PIL import Image import matplotlib.pyplot as plt scanner = zbar.ImageScanner() pil = Image.open("000.jpg").convert('L') width, height = pil.size plt.imshow(pil); plt.show() image = zbar.Image(width, height, 'Y800', pil.tobytes()) result = scanner.scan(image) for symbol in image: print symbol.data, symbol.type, symbol.quality, symbol.location, symbol

Vision Framework Barcode detection for iOS 11

假如想象 提交于 2019-11-30 15:14:02
问题 I've been implementing a test of the new Vision framework which Apple introduced in WWDC2017. I am specifically looking at the barcode detection - I've been able to get after scanning the image from Camera/Gallery that it's a barcode image or not. However, I can't see what the actual barcode value or the payload data when looking at the barcodeDescriptor. There appears to be nothing exposed on the https://developer.apple.com/documentation/coreimage/cibarcodedescriptor page to identify any of

How can I extract an AVMetadataObject from a UIImage?

随声附和 提交于 2019-11-30 12:13:22
问题 I'd like to use iOS 7's new barcode scanning functionality with a UIImage instead of live capture from one of the device's camera. I already have the detection working fine with an AVCaptureDeviceInput . The best way I think to do this would be to create a concrete subclass of AVCaptureInput that provides media data to an AVCaptureSession from a UIImage . However, I can't find any documentation or examples on how to subclass AVCaptureInput , so I'm at a loss. An alternative would be to

Enhanced iOS barcode scanner library?

江枫思渺然 提交于 2019-11-30 11:24:43
问题 We're creating an iOS app that basically scans badges at events and collects contact info. We're looking for an iOS library that can read not only the number of the barcode, but also any additional information that's included (contact info). Does anyone have any library suggestions or will this have to be a custom library? Thanks in advance! 回答1: Updated: Use AVCaptureMetaDataOutput in AVFoundation which works with minimum deployment target iOS 7. Previous Answer: Have been using ZBar SDK in

How to get ZPL code from a ZebraDesigner label?

余生颓废 提交于 2019-11-30 10:36:17
问题 I'm using ZebraDesigner 2.2.2 (Build 2728). Is there a way to extract the ZPL code from ZebraDesigner? I can't even export it to ZPL file, the only option I have is saving it as .lbl . 回答1: You can add a new ZebraDesigner ZPL driver to the system and use a file as the port. Then when you "Print" the document, it will write the ZPL code to the file. Note that it might have some header information before the first ^XA which you might not need. UPDATE : (How to add local port on a driver) Go to

Scan barcode into a specific textbox

▼魔方 西西 提交于 2019-11-30 08:59:20
I am working on bar-code scanners. The bar-code scanner that I am using is a plug-n-play type and scans the code automatically wherever you place the cursor. But what i want is that whether i can scan it to a specific text-box on a web page everytime my scanner reads a code For eg, if my form looks like this <input type="text" name="txtItem" id="txtItem" class="m-wrap w-120" tabindex="6"> <input type="text" name="itemId" id="itemId" class="m-wrap w-120" tabindex="6"> <input type="text" name="itemName" id="itemName" class="m-wrap w-120" tabindex="6"> <input type="text" name="itemQty" id=

Remove Text from below of the BarCode in ASP.NET(C#)

▼魔方 西西 提交于 2019-11-30 07:39:08
I am generating the barcode generation of barcode is working fine barcode also read it perfectly.followin is the code for barcode generation: private void GenerateBarCode(string codeInfo) { //Settings for the Image string TypeFaceName = "IDAutomationHC39M"; string imageLocation = Server.MapPath("2010.png"); //The format of the image file ImageFormat format = ImageFormat.Png; //path of unique file name string path = "D://MyProjects//RepeaterPaging//images//vijendra.png"; //REFERENCING A FONT PrivateFontCollection fnts = new PrivateFontCollection(); fnts.AddFontFile("IDAutomationHC39M.ttf");