Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Driver License Barcode Field Data Types

Tags:

c#

.net

barcode

I am given a task to develop a small library which needs to be able to read PDF417 barcode located on the back of the Driver's License card and parse the data out to our custom object.

However I need to know what data types are these Data types denoting?

4/ANS, 10/ANS, 5/ANS, etc.

enter image description here

The complete documentation can be found at: http://www.dol.wa.gov/external/docs/barcodeCalibration-basic.pdf

like image 670
Tarik Avatar asked Oct 10 '12 19:10

Tarik


2 Answers

Guessing here, but <field length>/ANS, where A is alphabetic, N numeric and S spaces?

For example, 3/A is 3 alphabetic characters like USA.

Funny that weight and sex are both 1/N, but the example given (2 in both cases) fits my hypothesis.

like image 160
craig65535 Avatar answered Sep 30 '22 02:09

craig65535


The Washington spec is based on the AAMVA standard here: http://www.aamva.org/DL-ID-Card-Design-Standard/

The 2013 ID Card Design Standard is here: http://www.aamva.org/WorkArea/DownloadAsset.aspx?id=4435

The PDF 417 barcode specifications start on page 51 (65) of that document. On page 58 (72) they list the type definitions: "A=alpha A-Z, N=numeric 0-9, S=special, F=fixed length, V=variable length"

like image 33
Anthony F Avatar answered Sep 30 '22 02:09

Anthony F