Sign In  Sign Up Live-Chat
Collapse/expand the left pane
Are you looking for an evaluation version of a product?
If so you can download any of the below versions for testing. The component will function as normal except for an evaluation limitation. At the time of purchase we provide a license file via email that will allow the component to work in its full capacity. If you would also like an evaluation license to test without any restrictions for 30 days, please follow the directions provided here.
NOTE:  If you experience errors like ’Internet explorer cannot display the web page’ is shown when you try to download a file, make sure your networking policies (enforced by your company or ISP) allow downloading ZIP and/or MSI files.

Aspose.BarCode for Java 1.1.0.0 New Release

File Details
Downloads: 82 File Size: 823.4kB
Posted By: iret Views: 364
Date Added: Sun, May 27 2007
Dear customers,

We've released Aspose.BarCode for Java 1.1.0!
Aspose.BarCode for Java is a set of easy-to-use library providing complete barcode solutions for java applications and web applications. Features include generation and recognition of more than 20 types of barcodes.

Hightlights:
  • BarCode generation
  • BarCode recognition
  • Servlet support, web rendering barcode
  • Various image format
  • JDK 1.5 or above
supported barcode symbologies:

One dimentional:
  • CODABAR  
  • CODE11  
  • CODE128  
  • CODE39  
  • CODE93  
  • EAN128  
  • EAN13  
  • EAN14  
  • EAN8  
  • BOOKLANDEAN  
  • MSI  
  • ITF14  
  • INTERLEAVED2OF5  
  • PLANET  
  • POSTNET  
  • UPCA  
  • SSCC18  
Two dimentional:
  • QR  
  • PDF417  
  • DATAMATRIX  
  • AZTEC  
Sample code:

     public void paint(Graphics g)
     {
         try
         {
             Image img = this.getToolkit().getImage("c:\\test.jpg");
             BarCodeReader reader = new BarCodeReader(img);
             BarCodeInfo<> results = null;
             results = reader.read();
             if(results.length > 0)
             {
                 g.drawString("barcode found:" + results.getCodeText(), 10, 10);
             }
             else
             {
                 g.drawString("barcode not found", 10, 10);
            }
        } catch (Exception ex)
        {
            ex.printStackTrace();
        }
    }


Demos:
A demo program is included in this release, use command line to run the demo:
java -jar Demo.jar

Screen shots of the demo program:




Comments
No comments exist for this file.