active questions tagged barcode - Stack Overflowmost recent 30 from stackoverflow.com2009-12-15T00:47:31Zhttp://stackoverflow.com/feeds/tag/barcodehttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1306134/java-print-barcode-labels0Java print barcode labelsDavid Hamilton2009-08-20T13:19:58Z2009-12-11T14:04:34Z
<p>Cans someone point in the write direction for printing barcode labels using Java? I can use the barbecue library (<a href="http://barbecue.sourceforge.net/" rel="nofollow">http://barbecue.sourceforge.net/</a>) to generate them bar codes as images, but I need a way to put the image (and human readable caption) into an Avery document template for printing. </p>
http://stackoverflow.com/questions/1886375/how-to-display-barcode-in-iphone1How to display barcode in iPhoneSridhar2009-12-11T07:14:59Z2009-12-11T11:27:29Z
<p>Hello,</p>
<p>I need to show barcode string(example :1001847983) into barcode image in A UIView.Does the iPhone SDK supports barcode fonts ?
I don't need reading the barcode, I just want to show the string in barcode lines.</p>
<p>Thanks In advance
Raghu</p>
http://stackoverflow.com/questions/838724/barcode-framework-for-the-iphone4barcode framework for the iphone?Stefan2009-05-08T08:05:48Z2009-12-11T10:06:12Z
<p>Is there already a barcode framework for the iphone?</p>
http://stackoverflow.com/questions/1339867/barcode-reading-using-picture-taken-using-mobile-phone-camera3Barcode reading using picture taken using mobile phone cameraRam2009-08-27T09:15:53Z2009-12-07T04:19:48Z
<p>How do we do programmatic reading of a barcode that is captured using a mobile phone camera? For example, how do that using iPhone or Android or Java ME? Do we need separate hardware to read bar code or can we do image manipulation?</p>
http://stackoverflow.com/questions/1846340/reading-status-from-zebra-printer1Reading status from Zebra Printerpmoreira2009-12-04T11:18:10Z2009-12-04T13:07:07Z
<p>Hi,</p>
<p>I'm working on a project where we need to use a Zebra Printer for barcode labels.
We're using C#, and we're doing OK on the printing side of things, sending raw ZPL strings to the printer (using winspool.drv).</p>
<p>However, we also need to read from the printer, and no luck there.</p>
<p>We need to get the status from the printer, which is the output to the ZPL command "~HS", so we can tell how many labels are in memory waiting to be printed.
The EnumJobs() from winspool.drv only has jobs on the windows spool, and once they're sent to the printer, they're gone from that list. But that doesn't mean the label has been printed, since the printer has a peel sensor and only prints one label at a time, and we're obviously interested in sending batches of labels to the printer.</p>
<p>I've tried something like (using the winspool.drv calls):</p>
<pre><code>OpenPrinter(szPrinterName, out hPrinter, IntPtr.Zero);
WritePrinter(hPrinter, pBytes, dwCount, out dwWritten); // send the string "~HS"
ReadPrinter(hPrinter, data, buff, out pcRead);
</code></pre>
<p>But I get nothing on the ReadPrinter call. I don't even know if this is the right way of going at it.</p>
<p>Anyone out there tackled this before? </p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1844457/using-xvkbd-to-read-a-barcode-how-to-disable-enter-key0Using xvkbd to read a barcode. How to disable Enter key?Natim2009-12-04T02:09:30Z2009-12-04T02:16:30Z
<p>Hello,</p>
<p>I am using zbarcam to read barcode from a webcam in my webapps.
But, since zbarcam display a \n at the end, my form is submit.</p>
<p>Here is what I use :</p>
<p><strong>read_one.py</strong></p>
<pre><code>#!/usr/bin/python
from sys import argv
import zbar
import webbrowser
# create a Processor
proc = zbar.Processor()
# configure the Processor
proc.parse_config('enable')
# initialize the Processor
device = '/dev/video0'
if len(argv) > 1:
device = argv[1]
proc.init(device)
# enable the preview window
proc.visible = True
# read at least one barcode (or until window closed)
proc.process_one()
# hide the preview window
proc.visible = False
# extract results
for symbol in proc.results:
# do something useful with results
print symbol.data
</code></pre>
<p><strong>keyboard.sh</strong></p>
<pre><code>python read_one.py | xvkbd -file -
</code></pre>
<p>How can I either remove the '\n' before sending the barcode to xvkbd or disable the enter key in xvkbd ?</p>
http://stackoverflow.com/questions/1741346/free-barcode-128-library-for-c0Free Barcode 128 library for C#Sergejus2009-11-16T10:37:42Z2009-11-16T10:39:33Z
<p>Could anybody recommend a free barcode 128 library for C#? Would appreciate any help!</p>
http://stackoverflow.com/questions/1724832/2d-barcode-scanner-for-os-x02D barcode scanner for OS X? [closed]Tesi Dolz2009-11-12T19:40:02Z2009-11-12T19:43:01Z
<p>What is the best QR barcode scanner for OS X?</p>
http://stackoverflow.com/questions/1639210/showing-a-barcode-on-a-ssrs-report-without-ssrs-addins0Showing a Barcode on a SSRS report without SSRS addinsChristopher Kelly2009-10-28T18:32:29Z2009-11-12T13:46:42Z
<p>I recently had the task of adding a barcode onto a SSRS report without being able to add anything to the report server other than the report itself. </p>
http://stackoverflow.com/questions/1243795/combining-semacodes-and-steganography4Combining semacodes and steganography?bjarkef2009-08-07T09:22:41Z2009-11-12T11:08:32Z
<p>This is an idea I have been thinking about, but I do not quite know how to solve it. I would like to know if any solutions like this exists out there, or if you guys have any idea how this could be implemented.</p>
<h3>Steganography</h3>
<p>Steganography is basically the art of hiding messages. In modern days we do this digitally by e.g. modifying the least significant bits in a image as the one below. Thus for every pixel and for every colour component of that pixel we might be able to hide a byte or two. </p>
<p>This alternation is not visibly by the naked eye, but analysing the least significant bits might reveal patterns that exposes the existence and possibly content of a hidden message. To counter this we simply encrypt the message before embedding it in the image, which keeps the message safe and also helps preventing discovery of the existence of a hidden message.</p>
<p>Thus, in principle, steganography provides the following:</p>
<ul>
<li>Hiding encrypted message in any kind of media data. (Images, music, video, etc.)</li>
<li>Complete deniability of the existence of a hidden message without the correct key.</li>
<li>Extraction of the hidden message with the correct key.</li>
</ul>
<p><img src="http://www.cs.vu.nl/~ast/books/mos2/zebras.jpg" /></p>
<h3>Semacodes</h3>
<p>Semacodes are a way of encoding data in a visually representation, that may be printed, copied, and scanned easily. The Data Matrix shown below is a example of a semacode containing the famous Lorem Ipsum text. This is essentially a 2D barcode with a higher capacity that usually barcodes. Programs for generating semacodes are readily available, and ditto for software for reading them, especially for cell phones. Semacodes usually contains error correcting codes, are generally very robust, and can be read in very damaged conditions.</p>
<p>Thus semacodes has the following properties:</p>
<ul>
<li>Data encoding that may be printed and copied.</li>
<li>May be scanned and interpreted even in damaged (dirty) conditions, and generally a very robust encoding.</li>
</ul>
<p><img src="http://upload.wikimedia.org/wikipedia/commons/b/b6/Lorem_Ipsum.png" width="200" /></p>
<h3>Combining it</h3>
<p>So my idea is to create something that combines these two, with all of the combined properties. This means it would have to:</p>
<ul>
<li>Embed a encrypted message in any media, probably a scanned image.</li>
<li>The message should be extractable even if the image is printed and scanned, and even partly damaged.</li>
<li>The existence of a embedded message should be undetectable without the key used for encryption.</li>
</ul>
<p>So, first of all I would like to know if any solutions, algorithms or research is available on this? Secondly I would like to hear any ideas/thoughts on how this might be done?</p>
<p>I really hope to get a good discussion going on the possibilities and feasibility of implementing something like this, and I am looking forward to reading your answers.</p>
<h2>Update</h2>
<p>Thanks for all the good input on this. I will probably work a bit more on this idea when I have more time. I am convinced it must be possible. Think about research in embedding watermarks in music and movies.</p>
http://stackoverflow.com/questions/1571160/hello-im-very-new-to-wpf-and-also-to-progamming-i-need-to-do-project-on-barcode0Hello im very new to Wpf and also to progamming. I need to do project on barcode generation.Hansani2009-10-15T09:03:38Z2009-11-11T11:31:29Z
<p>I found lot of Barcode generation codeprojects in C#. But could not find 1 in VB.Net. Please help me on this. </p>
http://stackoverflow.com/questions/1253728/how-do-i-print-an-itf-barcode-in-c0how do I print an itf barcode in c#unknown (google)2009-08-10T08:34:56Z2009-11-11T11:31:08Z
<p>I need to print and interleaved 2 of 5 barcode (18 digits no checksum) using GDI+. I have done this for code 128 barcode using some code found on web. The barcode scanner unfortunatley does not read code 128 so I have to resort to ITF barcodes.</p>
<p>Thanks,
Ken</p>
http://stackoverflow.com/questions/857054/calculate-the-image-size-required-to-hold-a-graphics-object0Calculate the image size required to hold a Graphics objectRichard2009-05-13T09:47:27Z2009-11-10T02:29:51Z
<p>I am writing a barcode application for work, where I create a graphics object and draw the various bars for a code 39 barcode. I create the graphics object with the following code:</p>
<p>int reqBarcodeWidth = 100;
int reqBarcodeHeight = 40;</p>
<p>objBitmap = new Bitmap(reqBarcodeWidth, reqBarcodeHeight);</p>
<p>objGraphics = Graphics.FromImage(objBitmap);</p>
<p>One of the things I want to do, however, is to allow different units to be used for drawing onto the graphics object, for example:</p>
<p>objGraphics.PageUnit = GraphicsUnit.Inch;</p>
<p>If I do this however, how do I know what size of bitmap to create in order to fit the full barcode on it?</p>
<p>Thanks in advance for any help.</p>
<h3>Update:</h3>
<p>Thanks for the reply. I have looked at barcode fonts before and really want to do away with installing fonts on many machines.</p>
<p>Also one of the functions of the program, which I didn't mention, will be to print stock codes for the warehouse which don't have EAN codes associated with them. These are typically items from China with complex stock codes. These will need to use a Code 128 barcode which use the extended range of characters and also take up less space.</p>
<p>The hard bit is mostly done its just the creation of the image I need to sort out. I don't know if I am trying to do this a complicated way, not really done any work on images before.</p>
http://stackoverflow.com/questions/1640835/zxing-zebra-crossing-in-c3ZXing ("Zebra Crossing") in C#Maxim Z.2009-10-28T23:36:59Z2009-11-05T05:38:00Z
<p>I'm looking for a good open-source library that can find and read a barcode from an image (versus using a barcode scanner). From other questions on Stack Overflow, I've found that <a href="http://code.google.com/p/zxing/" rel="nofollow">ZXing</a> ("Zebra Crossing") is quite good. Though it is made for Java, there is a C# port - however, I believe that it might not be complete. Do you think it is <strong>reliable</strong> enough to parse a barcode from such a situation, or is some other library better? </p>
<p><strong>EDIT:</strong> As Ed pointed out in the comments, I should just try it first. Wow, I did not think of that. :) but I guess my question is whether the partial port is reliable enough - if any of you have used it before, can it scan with proficiency?</p>
http://stackoverflow.com/questions/1655953/how-to-use-zxing-c-port0How To Use ZXing C# PortMaxim Z.2009-10-31T23:51:07Z2009-11-01T14:55:58Z
<p><em>NOTE: <a href="http://stackoverflow.com/questions/1640835/zxing-zebra-crossing-in-c">My original question</a> was about whether the ZXing C# port is reliable, but here, I'm trying to figure out how to use it. Thus, they are not duplicates.</em></p>
<p>I'm trying to use the <a href="http://code.google.com/p/zxing/" rel="nofollow">ZXing</a> C# module, but I'm having trouble. Does anyone who has used ZXing before know how to do it correctly? Unfortunately, the C# documentation is quite small.</p>
<p>My current code is:</p>
<pre><code>using com.google.zxing;
using com.google.zxing.client.j2se;
using com.google.zxing.common;
//...
Reader reader = new MultiFormatReader();
MonochromeBitmapSource image = new BufferedImageMonochromeBitmapSource(new Bitmap(Image.FromFile("barcode.jpg")),false);
Result result = reader.decode(image);
string text = result.getText();
sbyte[] rawbytes = result.getRawBytes();
BarcodeFormat format = result.getBarcodeFormat();
ResultPoint[] points = result.getResultPoints();
Console.WriteLine("barcode text: {0}", text);
Console.WriteLine("raw bytes: {0}", rawbytes);
Console.WriteLine("format: {0}", format);
Console.ReadLine();
</code></pre>
<p>I'm getting an exception on the line that starts with "Result result = ..." The ReaderException states: <code>"Unable to cast object of type 'com.google.zxing.oned.MultiFormatOneDReader' to type 'com.google.zxing.Reader'.</code></p>
<p>So, what am I doing wrong?</p>
<p><strong>UPDATE:</strong> I'm going to try the suggested ideas, but in the meantime, I found this <a href="http://groups.google.com/group/zxing/browse%5Fthread/thread/d481685e6b46c528/d27d9e46e218ce6f?lnk=gst&q=c%23#d27d9e46e218ce6f" rel="nofollow">issue</a> in the ZXing group.</p>
http://stackoverflow.com/questions/149379/how-to-generate-code39-barcodes-in-vb-net4How to generate Code39 barcodes in vb.netsebastiaan2008-09-29T16:03:59Z2009-10-29T07:23:56Z
<p>I want to create Code39 encoded barcodes from my application. </p>
<p>I know I can use a font for this, but I'd prefer not to as I'd have to register the font on the server and I've had some pretty bad experiences with that.</p>
<p><em>An example of what I've produced after asking this question is in the answers</em></p>
http://stackoverflow.com/questions/1641952/barcode-with-fop0-90Barcode with fop0.9usman2009-10-29T06:36:11Z2009-10-29T06:36:11Z
<p>Hi,
i am using the fop-0.95,barcode4j.jar and barcode4j-fop-ext.jar to generate the barcode. My barcode generation xsl code is </p>
<pre><code><fo:instream-foreign-object> <xsl:variable name="BARCODE">
<xsl:value-of select="BARCODE"/></xsl:variable>
<xsl:variable name="BARCODE-CFG">
<barcode>
<code128>
<human-readable>none</human-readable>
<height>5mm</height>
<quiet-zone enabled="false"/>
</code128>
</barcode>
</xsl:variable>
<xsl:copy-of select="barcode:generate($BARCODE-CFG,$BARCODE)"/></fo:instream-foreign-object></xsl:variable>
</code></pre>
<p>And i am <strong>getting the following error</strong> </p>
<p>SEVERE: javax.xml.transform.TransformerException: java.lang.NoSuchMethodExceptio
n: For extension function, could not find method org.apache.xml.dtm.ref.DTMNodeI
terator.generate([ExpressionContext,] #NODESET).
Oct 29, 2009 11:44:08 AM org.apache.fop.cli.Main startFOP
SEVERE: Exception
javax.xml.transform.TransformerException: org.apache.fop.fo.ValidationException:
Error(Unknown location): fo:instream-foreign-object is missing child elements.</p>
<p>Required Content Model: one (1) non-XSL namespace child
at org.apache.fop.cli.InputHandler.transformTo(InputHandler.java:217)
at org.apache.fop.cli.InputHandler.renderTo(InputHandler.java:125)
at org.apache.fop.cli.Main.startFOP(Main.java:166)
at org.apache.fop.cli.Main.main(Main.java:197)</p>
<p>Please tell me what is the problem</p>
http://stackoverflow.com/questions/539898/net-datamatrix-barcoding-components1.NET Datamatrix barcoding components?chopps2009-02-12T03:30:34Z2009-10-26T11:00:05Z
<p>Hey everyone,</p>
<p>Can anyone recommend a .NET component that can create and read datamatrix barcodes? I will be using the barcode for a project that will be sending and receiving the barcode on a fax coversheet. I have found a few compents out there but was wondering if anyone has had good experiences or recommnedations.</p>
<p>Thanks for the help.</p>
http://stackoverflow.com/questions/890244/change-tiff-pixel-aspect-ratio-to-square0Change tiff pixel aspect ratio to squareDavid Thomas Garcia2009-05-20T21:03:36Z2009-10-25T23:20:06Z
<p>I'm trying to perform barcode recognition on a multipage tiff file. But the tiff file is coming to me from a fax server (which I don't have control over) that saves the tiff with a non-square pixel aspect ratio. This is causing the image to be badly squashed due to the aspect ratio. I need to convert the tiff to a square pixel aspect ratio, but have no idea how to do that in C#. I'll also need to stretch the image so that changing the aspect ratio still makes the image legible.</p>
<p>Has anyone done this in C#? Or has anyone used an image library that will perform such a procedure?</p>
http://stackoverflow.com/questions/590695/can-anybody-recommend-a-bar-code-web-server-control2Can anybody recommend a Bar Code web server control?John MacIntyre2009-02-26T14:09:33Z2009-10-22T09:17:14Z
<p>Can anybody recommend a Bar Code web server control for formats 39 and 128 formats?</p>
<p>UPDATE: I posted this after being given a choice of 3 controls we'd never heard of. I was hoping to get a recommendation from somebody who is using something that is popular, stable and a commercial product. It looks like we will just go with one of the choices our manager sent. If you are reading this after the fact, and have a good recommendation, please add it for others needing one in the future. thx</p>
http://stackoverflow.com/questions/1596220/accuracy-of-barcode-vs-qrcode1Accuracy of barcode vs qrcode?unknown (yahoo)2009-10-20T17:46:11Z2009-10-20T20:19:28Z
<p>I want to develop a supermarket application for checking and billing.</p>
<p>Should I use barcodes or qrcodes? Which will give better accuracy?</p>
http://stackoverflow.com/questions/1580251/image-to-barcode-recognition3image to barcode recognition Hellnar2009-10-16T20:34:21Z2009-10-16T20:39:21Z
<p>Hello,
I know this has been discussed a few times on stackoverflow but I wasn't able to find a sufficient answer. For a project, I am seeking the best possible piece of software/api/library that can recognise barcode numbers from the input image. It will be used on mobile phones(iphone, windows mobile, android etc.) so it should be good at catching barcodes from bad angles, blurry images and such bad conditions. Being open source or commercial doesn't matter as long as it does the job well (indeed open source would be better :) )</p>
<p>If you have any experience with this topic, please share with us:)</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1570845/how-to-ask-bash-to-wait-for-a-result-and-send-a-sigkill-when-it-get-it2How to ask bash to wait for a result and send a SIGKILL when it get it ?Natim2009-10-15T07:43:03Z2009-10-15T17:48:07Z
<p>I want to use zbarcam but after reading a barcode, it doesn't stop.</p>
<pre><code>$ zbarcam | xvkbd -file - -window emacs
EAN-13:6941428130969
CODE-128:3096140900557
</code></pre>
<p>Do you know how I can tell bash to kill zbarcam after printing on the stdout the first \n ?</p>
http://stackoverflow.com/questions/1564578/how-to-read-a-ean-13-bar-code-from-an-image-in-c1How to read a EAN-13 bar-code from an image in C ?Natim2009-10-14T06:30:19Z2009-10-14T07:15:26Z
<p>I would like to read a EAN-13 bar-code from an image in C.
I found <a href="http://opencv.willowgarage.com/wiki/" rel="nofollow">the OpenCV library</a> that should help me to compute the image as well as <a href="http://sudokugrab.blogspot.com/2009/07/how-does-it-all-work.html" rel="nofollow">an article about an iPhone App that can read Sudoku.</a></p>
<p>But in an other hand, I found <a href="http://www.libdmtx.org/" rel="nofollow">an opensource library to read DataMatrix bar-code</a>.</p>
<p>I would like to join an existing OpenSource project about reading bar-code instead of starting one, since I am sure that some people already worked on this.</p>
<p>Do you have an idea of were to start and what to use to read EAN-13 barcode in C ?</p>
http://stackoverflow.com/questions/363108/does-anyone-know-of-source-code-to-a-free-bar-code-reader-algorithm3Does anyone know of source code to a free bar code reader algorithm?Tony Lambert2008-12-12T15:41:09Z2009-10-10T04:20:59Z
<p>Does anyone know of source code to a free bar code reader algorithm? Ideally in a c/c++/c# based language. Something that processes a bitmap picture of a barcode is fine...</p>
<p>Thanks</p>
<p>Tony</p>
http://stackoverflow.com/questions/1495092/convert-received-keys-in-previewkeydown-to-a-string1Convert received keys in PreviewKeyDown to a stringRagha J2009-09-29T21:35:48Z2009-10-05T10:52:59Z
<p>I am using PreviewKeyDown event on a window to receive all the keys from a barcode scanner. The KeyEventArgs is an enumeration and does not given me the actual string. I dont want to use TextInput as some of the keys may get handled by the control itself and may not bubble up to the TextInput event. </p>
<p>I am looking for a way to convert the the Keys that I get in PreviewKeyDown to actual string.
I looked at the InputManager, TextCompositionManager etc but I am not finding a way where I give the list of keys and it comes back with a string.
TextCompositionManager or something must be converting these Keys to a string which is what is available in TextInput.</p>
http://stackoverflow.com/questions/775625/itext-datamatrix-generation-problem0iText datamatrix generation problem Stumpy2009-04-22T03:53:56Z2009-09-30T12:09:41Z
<p>Hi, I am attempting to generate datamatrix barcodes from within itext. This works fine for most of my codes but not for some codes. One example is:</p>
<blockquote>
<p>HEnSh0701003-2V1</p>
</blockquote>
<p>This produces a non square barcode for some reason. When I use encoders from other companies (such as IDAutomation) I do get a valid square barcode.</p>
<p>Does anyone have an idea why this is happening? I am looking for a solution so I can use the embedded iTest DataMatrix class and not have to use a third party one.</p>
<p>A sample of the code I am using:</p>
<pre><code>BarcodeDatamatrix bar = new BarcodeDatamatrix();
bar.setOptions(BarcodeDatamatrix.DM_AUTO);
bar.generate("HEnSh0701003-2V1");
bcd.addCell(bar.createImage());
</code></pre>
<p>where bcd is a PdfTable with 2 columns.</p>
http://stackoverflow.com/questions/1458878/print-barcode-label-in-alternative-side-in-c-winforms0Print Barcode label in Alternative side in C# winformsunknown (google)2009-09-22T08:51:14Z2009-09-22T09:18:18Z
<p>i print the barcode.but it doesnot print the alternative label..
if any idea
Thanks Advance..</p>
http://stackoverflow.com/questions/604233/reading-and-decoding-pdf-417-barcodes-stored-in-an-image-or-pdf-file-from-within1Reading and decoding PDF-417 barcodes stored in an image or PDF file from within a .NET applicationJohn Rasch2009-03-02T22:09:26Z2009-09-19T02:27:41Z
<p>I am looking for a .NET library that is able to decode data from a <a href="http://en.wikipedia.org/wiki/PDF417" rel="nofollow">PDF-417 barcode</a> that is embedded either in an image file or PDF. At this point, I have only been able to find a <a href="http://turbulence.org/Works/swipe/barcode.html" rel="nofollow">Java version</a> and a <a href="http://sourceforge.net/projects/pdf417decode/" rel="nofollow">C version</a>.</p>
<p>Ideally, this library would be both open-source and free of charge, but I doubt such a decoder exists. </p>
<p>I am open to trying out demos of existing products that you may have had experience with - which leads me to the question - have you had any experience reading PDF-417 barcodes embedded in images or PDFs using .NET, and which of the available products would you recommend to do so?</p>
http://stackoverflow.com/questions/1408146/online-passes-with-barcode1Online passes with Barcodeandufo2009-09-10T22:54:33Z2009-09-15T16:08:06Z
<p>I have to set up a system for an online-pass generator using barcodes.</p>
<p>The module i developed lets the admins set which codes are available, and when a user requests a pass, the php script generates a jpeg of the pass with a small barcode print at the bottom.</p>
<p>The barcode is generated using:
<a href="http://www.dafont.com/3of9-barcode.font" rel="nofollow">http://www.dafont.com/3of9-barcode.font</a></p>
<p>Q: Are those barcodes universal? I need to know if the barcode scanner will work on those printed passes.</p>