barcode

.NET BarCode Reader in WPF

怎甘沉沦 提交于 2019-12-11 13:45:14
问题 I am trying to see whether its possible to read the barcode in WPF Applications without using any 3rd party tools. We built an application using WPF and they are not willing to buy any third party devices to read the barcode. Is there any other way to read the barcode data in WPF Applications using .NET APIS? Note: I seen examples in .NET, but most of them using Barcode reader tool. I have seen examples in Android ZXing library does that with out any tools like barcode reader or scanner. Any

Zend Framework Render Barcodes Into Multiple PDF Pages with other content

僤鯓⒐⒋嵵緔 提交于 2019-12-11 13:23:39
问题 I am trying to create pages of incrementing labels that include barcodes. I can get a barcode into a PDF, and I can get it superimposed on other content in the PDF (see below). But I can't figure out how to assign a barcode to a certain page of a pdf using something maybe like Zend_Barcode::factory('code39', 'pdf', $barcodeOptions, $rendererOptions)->setResource($page)->draw(); or $page = Zend_Barcode::factory('code39', 'pdf', $barcodeOptions, $rendererOptions)->setResource($pdf)->draw();

Add itextsharp barcode image to PdfPCell

让人想犯罪 __ 提交于 2019-12-11 11:14:55
问题 I'm trying generate barcodes from a text string and then PDF the results using iTextSharp. Right now, I have the code below: // Create a Document object var pdfToCreate = new Document(PageSize.A4, 0, 0, 0, 0); // Create a new PdfWrite object, writing the output to a MemoryStream var outputStream = new MemoryStream(); var pdfWriter = PdfWriter.GetInstance(pdfToCreate, outputStream); PdfContentByte cb = new PdfContentByte(pdfWriter); // Open the Document for writing pdfToCreate.Open();

Import data from a barcode reader to a web app [closed]

為{幸葍}努か 提交于 2019-12-11 10:59:40
问题 This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, visit the help center. Closed 7 years ago . I am developing a PHP based web app and adding support to create and read barcodes. I wanted to know how can I import data from a barcode reader

Python Code128 encoder for Code128 barcode font

久未见 提交于 2019-12-11 10:37:19
问题 Like the title says, I have a Code128 font that I would like to print barcodes with. However, the string needs to be encoded in Code128 to make the barcode font work. My app uses the Python3 language. There used to be an example on the web somewhere how to encode the string for a Code128 font, but I can't find it anymore. I do NOT want a string to .svg converter. I specifically want to convert a string to a Code128 encoded string. Any references, code snippets in Python3 or documentation

Python - Loop waiting for input

不问归期 提交于 2019-12-11 09:58:35
问题 I have looked around on the StackOverflow forums, unable to find a solution that applies to my specific problem. I need to write a bit of code, that is continuously checking for user input. I have got a Raspberry Pi with a Barcode Scanner attached to it. I want my Python script to loop, waiting for my Barcode Scanner to bleep something (which will then "type" it in the active window, it's acting like a keyboard). When the barcode scanner 'types' the 8 digit number - I need the Python script

Bar code font error with crystal report on web server

孤人 提交于 2019-12-11 09:57:56
问题 I am using a bar code font to display bar code in my crystal report. It's working fine but in one condition It needs restart of machine after installing bar code font. So it's working good because after installing bar code font I simply restart the machine and it start's work. But when I uploaded my project on web server the same condition occurs. My service provider installed bar code font on server but, it requires restart of server to take effects which is not possible. So what is the

Generating a PDF417 barcode from a Byte array in c#

ぐ巨炮叔叔 提交于 2019-12-11 06:55:38
问题 I need a way of generating PDF417 barcodes from byte arrays . I have found numerous SDKs that can generate barcodes but all of them expect a string as the data instead of a byte array, unfortunately this isn't a possibility since I need to conform to a pre-existing standard Thanks in advance Code that I have tried, as requested by Wyatt Earp. /// <summary> /// Writes the barcode data to a specified location /// </summary> /// <param name="data">Data of the barcode</param> /// <param name=

How to set scanning bound using AVFoundation

与世无争的帅哥 提交于 2019-12-11 05:28:09
问题 I am trying barcode scanner in one of my iOS application. I had successfully implemented the barcode scanner. But currently barcode scanning is displayed in full screen only. But what I want is that, the video should be viewed in full screen and the barcode should be scanned in particular portion only. That is, if the barcode is placed in that portion then only it should be displayed. Below is my current code: session=[[AVCaptureSession alloc]init]; device=[AVCaptureDevice

Scan QR code without using google play services

这一生的挚爱 提交于 2019-12-11 05:24:22
问题 I have an android app which on local WiFi and doesn't require an internet connection so I am looking for a solution which can scan QR codes without requiring Google Play Services as no internet connection is there so I do not want to update Google Play Services. Currently, I am doing it by using Google Vision API but somehow(if possible) I want to remove this dependency. 回答1: Below is the link for the same : QR Code Reader without requiring google play services 来源: https://stackoverflow.com