Questions tagged [code39]

Code 39 is a variable length, discrete barcode symbology.

The Code 39 specification defines 43 characters, consisting of uppercase letters (A through Z), numeric digits (0 through 9) and a number of special characters (-, ., $, /, +, %, and space). An additional character (denoted '*') is used for both start and stop delimiters. Each character is composed of nine elements: five bars and four spaces. Three of the nine elements in each character are wide (binary value 1), and six elements are narrow (binary value 0). The width ratio between narrow and wide can be chosen between 1:2 and 1:3.

52 questions
0
votes
1 answer

Barcode Generation (Code 39) MPDF

I'm able to generate a barcode by using the following code: $code = '12345'; Then to generate the barcode, I do the following: However, it is not generating the correct id. Is…
Kevin Davis
  • 367
  • 1
  • 7
  • 25
0
votes
1 answer

Printing barcode in oracle reports -attaching plls

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 where to place this .pll file in the reports…
0
votes
0 answers

Use a font style different from defaults on vb.net

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. The code build using font style "Normal" is not…
user3793240
  • 44
  • 10
0
votes
1 answer

Barcode Image not getting scanned

I have created Barcodes for labels in my asp.net mvc application. Now I am inserting that image in excel sheet to print labels. The issue is barcode scanner is unable to read barcode. I am generating Code 39 barcode as below: string barcodeName =…
user3647327
  • 31
  • 2
  • 11
0
votes
2 answers

JavaScript not recognizing backslash for desired output

What I have here is a JS program that generates Code39 barcode using display HTML and CSS to display the white and black lines. The JS file is fine, but I need this code to generate a portion of barcode for a backslash. The problem is, regular…
0
votes
3 answers

Best Bar Code Scanner for both Web Form/ Win Form input

I have an application that prints eTickets. Originally I used the cool 2-D bar code because it allowed me to use the GUID as the code. However scanners that can scan 2-D bar codes are way too expensive. So now I just use any of the codes that the…
aron
  • 2,856
  • 11
  • 49
  • 79
-5
votes
1 answer

How to generate barcode using specific font in PHP

I need to generate barcode image in format of code39. I need to use specific font 'w39H.fft' , 'w39LC.fft' I am using this library to generate the bar-code image. https://github.com/fobiaweb/Barcode39 include('Barcode39.php'); $bc = new…
Rakesh
  • 505
  • 5
  • 12
1 2 3
4