Sunday 4 October 2015

Extracting Personal Information from Driving License

Most of the web and mobile applications may have the requirement to collect personal information of end user that includes first/middle/last name, date of birth, address, gender etc. To collect personal information, we generally create a web page containing personal information fields. This web page is presented to the end user and user has to fill personal information and submit it. Isn’t it time consuming process for end user? What if personal information is pre-populated by some mechanism? If we pre-populate data from some authentic sources, this will not only save end user’s typing time but also reduces typing errors. This way we can improve user experience of application.

There could be multiple sources to fetch personal information. Driving license is one of the best sources that contain personal information say first/middle/last name, date of birth, address, gender etc. To read the information, we have to scan or get pic of driving license, read bar code and then decode the information. But notice that, only couple of countries provide driving license with 2D bar code. United State of America provides driving licenses with 2D bar codes. In this post, I will walk you through how you can read driving license 2D bar code out of scanned image, decode the personal information and use it in your application.

How to Extract Driving License Information

I was searching for different tools on net that provides Java API to extract personal information. I reached to Inlite, this is one of the best options I was searching for. Inlite provides the solution to extract personal information from US/Canada driver licenses along with other bar code related features. 


Below is the sample driving license with 2D bar code [this is taken from Inlite site from here].



Follow below steps to extract driving license information in your local environment:

 1. Download image processing SDK ‘ClearImage SDK’ from Inlite. This is free for developers and supports any number of developers.

2. You will get executable file like ‘ClearImageSDK.8_3_4524.exe’. Now install clear image SDK in your local environment by executing this file. Clear image installation directory will look like below:





3. Now in your eclipse IDE create sample java project and set following library in your project’s build path.

<clearImageInstallDir>\workspace.ClearImageJava\libs\ClearImageJ.jar

4. After following this link, I have used same code snippet to read the driving license 2D bar code in following class. Notice that, in following class you need to replace two strings:

<clearImageInstallDir> :  Replace this with actual clear image installation directory.
<downloadedImagePath> : Download scanned image of sample driving license from here and replace this with image file path.

package com.xx.dl.reader;

import ClearImageJNI.*;

public class DLBarCodeReader {
      
       public static void main(String[] args) throws CiException {       
            
             String s =   CiServer.loadClearImage("<clearImageInstallDir>\\
                           workspace.ClearImageJava\\libs\\win64
                           \\ClearImage.dll");
             if (s != ""){
                    System.out.println("ERROR Loading: " + s);
             }else{
                    System.out.println("Loaded DLL file successfully");
             }           
            
             String infoXML = readBarcode2D("<downloadedImagePath>", 1);
       }
      
       static String readBarcode2D(String fileName, int page) throws CiException
      {
             CiServer objCi=new CiServer();
             ICiServer Ci=objCi.getICiServer();
             try {
                    // Create and configure barcode reader
                    ICiPdf417 reader = Ci.CreatePdf417();               
                    // Open Image file
                    reader.getImage().Open(fileName, page);             
                    // Read barcodes
                    reader.Find(0);                 
                    // Process results
                    for (int i = 1; i <= reader.getBarcodes().getCount(); i++) {
                           ICiBarcode Bc =
                              reader.getBarcodes().getItem(i);                          
                           //This will print XML containing information of DL
                           retun Bc.getText();
                    }
             } catch (Exception ex) {
                    ex.printStackTrace();                  
             } finally {
             // Collect garbage periodically to release JNI-managed objects
                    System.gc();
             }
             return null;
       }
}


5.   Run above program. You will get following xml containing personal information:

<?xml version="1.0" encoding="UTF-8"?>
<AAMVA>
  <user>
    <last e="DCS">Lastnamexyxyxyxyxyxyxyxyxxyxyxyxyxyxyxyx</last>
    <first e="DAC">Firstxyxyxyxyxyxyxyxyxxyxyxyxyxyxyxyxxyx</first>
    <middle e="DAD">Xyxyxyxyxyxyxyxyxxyxyxyxyxyxyxyxxyxyxyxy</middle>
    <suffix e="DCU">SUFIX</suffix>
    <dob e="DBB">1977-10-31</dob>
    <eyes e="DAY">BRO</eyes>
    <hair e="DAZ">BLK XY1XY1XY</hair>
    <sex e="DBC">M</sex>
    <height e="DAU">5'8"</height>
    <weight e="DAW">150 lbs</weight>
    <street e="DAG">1234 Any Street Xy1Xy1Xy1Xy1Xy1Xy1X</street>
    <city e="DAI">City Xy1Xy1Xy1Xy1Xy1</city>
    <state e="DAJ">CA</state>
    <postal e="DAK">00000-0000</postal>
    <country e="DCG">USA</country>
    <id e="DAQ">D1234562 XYXYXYXYXYXYXYXYX</id>
    <issued e="DBD">2009-10-31</issued>
    <expires e="DBA">2014-10-31</expires>
  </user>
  <head>
    <filetype name="File Type">ANSI</filetype>
    <format name="Data Format">21</format>
    <issuer name="Issuer Identification Number">636014</issuer>
    <state name="Issuer Name">California</state>
    <st name="Issuer Name Abbreviated">CA</st>
  </head>
  <subfile designator="DL">
    <element id="DAQ" name="Customer ID Number">D1234562 XYXYXYXYXYXYXYXYX</element>
    <element id="DCS" name="Customer Family Name">LASTNAMEXYXYXYXYXYXYXYXYXXYXYXYXYXYXYXYX</element>
    <element id="DDE" name="Family name truncation">U</element>
    <element id="DAC" name="Driver First Name">FIRSTXYXYXYXYXYXYXYXYXXYXYXYXYXYXYXYXXYX</element>
    <element id="DDF" name="First name truncation">U</element>
    <element id="DAD" name="Driver Middle Name or Initial">XYXYXYXYXYXYXYXYXXYXYXYXYXYXYXYXXYXYXYXY</element>
    <element id="DDG" name="Middle name truncation">U</element>
    <element id="DCA" name="Jurisdiction-specific vehicle class">A XYXY</element>
    <element id="DCB" name="Jurisdiction-specific restriction codes">NONEY1XY1XY1</element>
    <element id="DCD" name="Jurisdiction-specific endorsement codes">NONEX</element>
    <element id="DBD" name="Document Issue Date">10312009</element>
    <element id="DBB" name="Date of Birth">10311977</element>
    <element id="DBA" name="Document Expiration Date">10312014</element>
    <element id="DBC" name="Physical Description - Sex">1</element>
    <element id="DAU" name="Physical Description - Height">068 IN</element>
    <element id="DAY" name="Physical Description - Eye Color">BRO</element>
    <element id="DAG" name="Address - Street 1">1234 ANY STREET XY1XY1XY1XY1XY1XY1X</element>
    <element id="DAI" name="Address - City">CITY XY1XY1XY1XY1XY1</element>
    <element id="DAJ" name="Address - Jurisdiction Code">CA</element>
    <element id="DAK" name="Address - Postal Code">000000000</element>
    <element id="DCF" name="Document Discriminator">00/00/0000NNNAN/ANFD/YY X</element>
    <element id="DCG" name="Country Identification">USA</element>
    <element id="DCU" name="Name Suffix">SUFIX</element>
    <element id="DAW" name="Physical Description - Weight">150</element>
    <element id="DAZ" name="Hair color">BLK XY1XY1XY</element>
    <element id="DCK" name="Inventory control number">XY1XY1XY1XY1XY1XY1XY1XY1X</element>
    <element id="DDA" name="Compliance Type">F</element>
    <element id="DDB" name="Card Revision Date">MMDDCCYY</element>
    <element id="DDD" name="Limited Duration Document Indicator">1</element>
  </subfile>
  <subfile designator="ZC">
    <element id="A" name="Optional field A">Y</element>
    <element id="B" name="Optional field B">CORR LENS</element>
    <element id="C" name="Optional field C">BRN</element>
    <element id="D" name="Optional field D">XYX</element>
    <element id="E" name="Optional field E">XYXYXYXYXYXYXY</element>
    <element id="F" name="Optional field F">XY1XY1XY1XY1XY1XY1XYXYXYXYXYXYXY</element>
  </subfile>
</AAMVA>


6.   Using JAXB, parse above xml data into your own java pojo.
a.      Download ‘jaxb-ri-2.2.11.zip’ from this link and then extract it.
b.      After extracting this zip file, add external jar files (jaxb-ri-2.2.11\jaxb-ri\lib\*.jar) into your eclipse project build path.
c.      Generate XSD from above xml by following this link.
d.      Follow section 2.4 of this link  to generate POJO classes from generated XSD. 
e.      Create below class to hold the personal information.

package com.xx.dl.reader;

public class DLUserInfo {

       private String firstName;
       private String middleName;
       private String lastName;  
       private String dob;
       private String street;
       private String city;
       private String state;
       private String postal;

       public String getFirstName() {
             return firstName;
       }
       public void setFirstName(String firstName) {
             this.firstName = firstName;
       }
       public String getMiddleName() {
             return middleName;
       }
       public void setMiddleName(String middleName) {
             this.middleName = middleName;
       }
       public String getLastName() {
             return lastName;
       }
       public void setLastName(String lastName) {
             this.lastName = lastName;
       }
       public String getDob() {
             return dob;
       }
       public void setDob(String dob) {
             this.dob = dob;
       }
       public String getStreet() {
             return street;
       }
       public void setStreet(String street) {
             this.street = street;
       }
       public String getCity() {
             return city;
       }
       public void setCity(String city) {
             this.city = city;
       }
       public String getState() {
             return state;
       }
       public void setState(String state) {
             this.state = state;
       }
       public String getPostal() {
             return postal;
       }
       public void setPostal(String postal) {
             this.postal = postal;
       }
}     

f.       Map xml to your own pojo:

package com.xx.dl.reader;

import java.io.StringReader;

import javax.xml.bind.JAXBContext;
import javax.xml.bind.JAXBException;
import javax.xml.bind.Unmarshaller;

import com.xx.dlxmlreader.jaxb.pojo.AAMVA;
import com.xx.dlxmlreader.jaxb.pojo.AAMVA.User;

public class DLBarCodeXMLDecoder {
       
       // Input argument is the same XML that is mentioned in above steps
       public DLUserInfo decodeXml(String dlBarCodeXML) throws
                                           JAXBException{
          
              JAXBContext jaxbContext =
                            JAXBContext.newInstance(AAMVA.class); 
              Unmarshaller jaxbUnmarshaller =
                             jaxbContext.createUnmarshaller(); 
              StringReader reader = new StringReader(dlBarCodeXML);

              // AAMVA.java should be genereated in step 6.d
              AAMVA dlBarCodeXml = (AAMVA)
                       jaxbUnmarshaller.unmarshal(reader); 
              
              User userInfo = dlBarCodeXml.getUser();
              
              DLUserInfo dlUserInfo = new DLUserInfo();
              dlUserInfo.setFirstName(userInfo.getFirst().getValue());
              dlUserInfo.setMiddleName(userInfo.getMiddle().getValue());
              dlUserInfo.setLastName( userInfo.getLast().getValue());
              dlUserInfo.setDob(userInfo.getDob().getValue().toString());
              dlUserInfo.setStreet( userInfo.getStreet().getValue());
              dlUserInfo.setCity(userInfo.getCity().getValue());
              dlUserInfo.setState(userInfo.getState().getValue());
              dlUserInfo.setPostal(userInfo.getPostal().getValue());
              
              return dlUserInfo;
       }
}
  
g.    Call DLBarCodeXMLDecoder.decodeXml in  ‘DLBarCodeReader’ class to map XML information into required POJO.

String infoXML = readBarcode2D("<downloadedImagePath>", 1);
  
DLUserInfo dlUserInfo = DLBarCodeXMLDecoder.decodeXml(infoXML);

System.out.println(dlUserInfo);

I hope this post helped you in extracting information from driving license.  

7 comments:

  1. I rejoice to this blog offering distinct as well as handy understanding regarding this subject. Adult driving license

    ReplyDelete
  2. It is really a helpful blog to find some different source to add my knowledge. I came into aware of new professional blog and I am impressed with suggestions of author. Taxi Portland Ct

    ReplyDelete
  3. educational paper writing want to be a hundred% precise and grammatical errors free as purchaser always appears for a professional writer who can help with superb writing issuer and can show expertise thru their writing talent. concept of author is notably preferred. Taxi Wethersfield Ct

    ReplyDelete
  4. If you study online with the driving test guide, you will definitely save a lot of money on your driving lessons and learn to drive faster than before. You also get the chance to see for yourself what examiners want to see in your test. keliu eismo taisykles

    ReplyDelete

  5. This is very great and helpful information. I like your blog, thanks for sharing this great information. I am a gamer and I would like to suggest to you an auto-clicker which is really interesting. Autoclicker

    ReplyDelete
  6. Hey,
    Thank you for this post. This is really helpful and useful to understand topics. I have something for you i hope you like it visit here

    ReplyDelete