Skip to main content
Filter by
Sorted by
Tagged with
-1 votes
1 answer
696 views

I'm using ZXing library for reading Code 39 barcodes from pdf documents. I noticed it adds a control character at the end of the barcode. Is there a way to disable the generation of that extra ...
A M's user avatar
  • 849
0 votes
1 answer
401 views

I'm using barcode.Code39 and barcode.writer.ImageWriter from the python-barcode library (version 0.15.1) to create a simple barcode and dump it to a PNG. I was able to control the left and right ...
OptiAndrew's user avatar
0 votes
1 answer
867 views

I need to display a numeric value (document number) as barcode. I use Code39 to convert. It is important to concatenate %-character as first, and $-character as last character to my number. Here is my ...
LewoSoft's user avatar
1 vote
0 answers
140 views

Is there a way to create a barcode that is "PartNumber" and then "Line" and then when the part number is scanned into google sheets it is broken up? So for example, the operator ...
noahfish5's user avatar
0 votes
1 answer
2k views

Really hope that somebody will be able to help with this as I'm near losing my mind trying to understand why this happens. I'm getting different results when scanning the same value in a Code 39 ...
Aleksandr Sergunin's user avatar
0 votes
1 answer
452 views

I am trying to print code 39 Barcode using zebra ZPL. My Field Data is as follows : ^FDabc-def^etc.. Is there a command that will help skip the "-" in the Barcode? I only need to print "abcdef" ...
J Doe's user avatar
  • 49
0 votes
0 answers
768 views

I'm developing a Windows 10 device driver for a virtual camera based off the avstream/avscamera example in the windows driver samples repository. The driver will gets its frames from a separately run ...
Eric Davies's user avatar
0 votes
0 answers
169 views

I'm trying to print a code39 with a labeler (argox x-2300e) so the code is this (i deleted all the stuff to print just a barcode to test): Imports System.ComponentModel Imports System.Drawing....
DarkAngel00's user avatar
1 vote
2 answers
10k views

I'm writing a customization for MFG/Pro ERP. My program has a couple of 1-D barcodes which are printed and are getting read correctly. However, whenever there is a space in the text to be barcoded, ...
SJaka's user avatar
  • 860
4 votes
2 answers
2k views

I have this code to generate a barcode: func generateBarcode(from string: String) -> UIImage? { let data = string.data(using: String.Encoding.ascii) if let filter = CIFilter(name: "...
jbrown94305's user avatar
0 votes
1 answer
1k views

I'm creatin a Code39 barcode image with C# and I need to add margin to this image. This is the first image which I created. I created it. But it should be like this. It should be like this. The ...
Can Yurdugül's user avatar
0 votes
1 answer
6k views

I'm able to generate a barcode by using the following code: $code = '12345'; Then to generate the barcode, I do the following: <barcode code="$code" type="C39" size="0.5" height="2.0" />...
Kevin Davis's user avatar
1 vote
1 answer
3k views

Is there a way to omit the start/stop character in the interpretation line of a Code 39 barcode? Obviously the barcode itself should contain them. ||| |||| || | |||| *1234567890* ...
reformed's user avatar
  • 4,828
2 votes
1 answer
2k views

My application is generating a Code 39 barcode but a customer is having problems with their document management system recognizing the barcode after the prints have been scanned and re-printed. I ...
Jack's user avatar
  • 513
1 vote
2 answers
5k views

I'm looking for the correct solution to decode a Code 3 of 9 barcode format. What I found on wikipedia stated the following: Each character is composed of nine elements: five bars and four spaces. ...
djthoms's user avatar
  • 3,106
0 votes
1 answer
378 views

I am using pll library to print barcode in Oracle reports. Its working fine in Local machine. It looks like Oracle Reports can't find this PLL file while running from the front end. My question is ...
Fiona Sharon's user avatar
2 votes
0 answers
86 views

i want to change the output and input of getJSONObject i have tried using the following methods: Int to Float SO 2.Int to String SO 3.Int to Char SO JSONObject jObject = jArray.getJSONObject(...
borton's user avatar
  • 21
0 votes
0 answers
139 views

I'm developing a program in vb.net. The problem is when i'm building an image using DrawString from Graphics and put it into a picturebox. The font i'm using is Free 3 of 9 for Code39 barcode coding. ...
user3793240's user avatar
9 votes
0 answers
2k views

Using python3 and reportlab I'm trying to generate two columns of barcodes: from reportlab.graphics.barcode import code39 from reportlab.lib.pagesizes import A4 from reportlab.lib.units import mm ...
lanthica's user avatar
  • 250
1 vote
0 answers
206 views

I am using zBAr SDK to scan VIN code. I am following the zBar's tutorial to set scan symbology of Code_39. Each time I run the app it says "the image picker failing to read". I am using the following ...
devmobile247's user avatar
2 votes
1 answer
1k views

I have to read, with an iPhone app, a set of barcodes that have been generated with a Code39 font, but lack the leading/trailing 'asterisk', so that they are considered invalid and simply ignored by ...
Don's user avatar
  • 17.7k
1 vote
2 answers
2k views

I am adding Code 39 bar code scanning functionality to a C# asp.net web app. This function must work with iphone, ipad, android phone, and android tablet. I need the scanned bar code value to be ...
James Sumner's user avatar
1 vote
1 answer
455 views

I have a "code39" barcode. How can I get the information from that bar code: product name, manufacturer, and everything else? Please help.
user1323273's user avatar
2 votes
0 answers
2k views

I'm having a problem while printing barcodes (Code 39 stadard). It's something that occurs intermittently. -In Google Chrome: It normally shows me the code, but when I see it on print view, it shows ...
fabioleardini's user avatar
1 vote
1 answer
4k views

I have a simple USB barcode reader which I intend to use to scan COD 39 barcodes. I know that just scanning the barcode while having a text field on focus will get me the text input of the barcode I'm ...
Sach's user avatar
  • 10.5k