tl  tr
  Home | Tutorials | Articles | Videos | Products | Tools | Search
Interviews | Open Source | Tag Cloud | Follow Us | Bookmark | Contact   
 Barcodes > Barbecue > Barcode USD 3

Barcode USD 3 

Barbecue is a free and open source Java library for Barcode generation. This requires the library barbecue-1.5-beta1.jar to be in classpath. The following example shows generating USD 3 Barcode.

File Name  :  
com/bethecoder/tutorials/barbecue/USD3Test.java 
Author  :  Sudhakar KV
Email  :  [email protected]
   
package com.bethecoder.tutorials.barbecue;

import java.io.File;

import net.sourceforge.barbecue.Barcode;
import net.sourceforge.barbecue.BarcodeFactory;
import net.sourceforge.barbecue.BarcodeImageHandler;

public class USD3Test {

  public static void main (String [] argsthrows Exception {

    //Get USD3 Barcode instance from the Factory
    Barcode barcode = BarcodeFactory.createUSD3("00123456789"false);

    File imgFile = new File("testusd3.png");

    //Write the bar code to PNG file
    BarcodeImageHandler.savePNG(barcode, imgFile);
  }
}
   

It gives the following output,

USD 3 Barcode



 
  


  
bl  br