Category Archive: Aspose.BarCode Product Family

Official blog of Aspose.BarCode for .NET, Java & Reporting Services with news of newly supported features, hot fixes, technical articles, tips and videos.

Java ME SDK 3.0 Support Added to Aspose.BarCode for Java

Aspose.BarCode icon

We are pleased to release a new version of Aspose.BarCode for Java v2.7. In this version, we updated the barcode component for Java ME (Mobile Edition). It now fully supports Java ME SDK 3.0. We also added support for creating and reading of some new barcode symbologies.

For release notes and download, please visit http://www.aspose.com/community/files/72/java-components/aspose.barcode-for-java/default.aspx.… Continue Reading

Posted in Aspose.BarCode Product Family, Saqib Razzaq | Tagged , , , , , ,

Read Barcodes on Windows Phone 7 with Aspose.BarCode for .NET

We are happy to announce the release of a new version of Aspose.BarCode for .NET. In this major release, we added support for reading barcodes on Windows Phone 7. It currently supports most of 1D and Postal barcode symbologies. 2D barcode recognition will be added in future. Grab yourself a copy of Windows Phone Developer tools from http://www.microsoft.com/downloads/en/details.aspx?FamilyID=04704acf-a63a-4f97-952c-8b51b34b00ce and start evaluating the barcode recognition on Windows Phone 7.

Below is a screenshot of the Windows Phone 7 demo application included … Continue Reading

Posted in Aspose.BarCode Product Family, Saqib Razzaq | Tagged , , , ,

Render OPC and Leitcode barcodes in JasperReports

Aspose.BarCode icon

We just released a new version of Aspose.BarCode for JasperReports 1.5. In this version, we added support for rendering OPC and Deutsche Post Leitcode barcodes.

For download and release notes, please visit the Aspose.BarCode for JasperReports download section of our website.… Continue Reading

Posted in Aspose.BarCode Product Family, Saqib Razzaq | Tagged , , ,

Generate and Recognize OPC, VIN and Leitcode Barcodes using Aspose.BarCode for Java

We are pleased to announce the release of a new version of Aspose.BarCode for Java 2.6. In this version, we added barcode generation and recognition support for the following symbologies:

  • OPC (Optical Product Code)
  • Deutsche Post Leitcode
  • VIN (Vehicle Identification Number)

Below are some of the sample barcode images generated by Aspose.BarCode for Java. Visit documentation for details and code samples.

generate Leitcode barcode in Java
Generate VIN barcode in Java
Generate OPC barcode in Java

For release notes and downloads, please visit the Aspose.BarCode for Java download section of our website.… Continue Reading

Posted in Aspose.BarCode Product Family | Tagged , , , ,

OPC and Leitcode Barcodes Support Now Available in Aspose.BarCode for .NET 4.0

We are pleased to announce the release of a new version of Aspose.BarCode for .NET 4.0. In this version, we added support for OPC and Deutsche Post Leitcode barcode symbologies. You can generate as well as recognize both of these symbologies. // Create OPC barcode
BarCodeBuilder builder = new BarCodeBuilder(strCodetext, Symbology.OPC);
// Save the barcode to stream
MemoryStream imgStream = new MemoryStream();
builder.Save(imgStream, ImageFormat.Png);
imgStream.Position = 0;

// Read OPC barcode
BarCodeReader reader = new BarCodeReader(imgStream, BarCodeReadType.OPC);
while (reader.Read())
{… Continue Reading
Posted in Aspose.BarCode Product Family |

Leitcode and OPC barcode symbologies added in Aspose.BarCode for Reporting Services 2.5

We recently released a new version of Aspose.BarCode for Reporting Services v2.5. This version now supports rendering of Deutche Post Leitcode and OPC barcodes in reports. For release notes and download, please visit http://www.aspose.com/community/files/52/ssrs-rendering-extensions/aspose.barcode-for-reporting-services/default.aspx.… Continue Reading
Posted in Aspose.BarCode Product Family |

Full Support of Barcode Control in .NET 4.0 Applications in Aspose.BarCode for .NET 3.9.1

We have recently released Aspose.BarCode for .NET 3.9.1 hotfix which fixes the issues in adding the BarCode control in Windows Forms .NET 4.0 project in Visual Studio 2010. With this hotfix, the control can now be used and easily customized according to your needs. You also need to change the target platform to “.NET 4.0” if it is set to “.NET 4.0 Client Profile”. For download and release notes, please visit http://www.aspose.com/community/files/51/.net-components/aspose.barcode-for-.net/default.aspx.… Continue Reading
Posted in Aspose.BarCode Product Family |

Read Barcode from Specified Area of Image using Java

We have recently released a new version of Aspose.BarCode for Java v2.5.1. With this version, you can now specify the area inside an image for reading barcodes. This feature is very useful for improving the performance in those cases where the image size is very large and the location of barcode is known in advance. The barcode reader will only scan the specified part instead of scanning the whole image.

Sample Java code:

// Get the image
Image img = 
Continue Reading
Posted in Aspose.BarCode Product Family |

Improved Barcode Recognition Performance in Aspose.BarCode for .NET 3.9

We are pleased to announce a new version of Aspose.BarCode for .NET v3.9. It now supports exclusive locking of the barcode image, which can result in improved barcode recognition performance for large sized images.

BarCodeReader reader = new BarCodeReader(image, BarCodeReadType.Code128);
// Acquire an exclusive lock on the image
reader.SetHints(RecognitionHints.ImageAccessHints.Exclusive);
while (reader.Read() == true)
{
      Console.WriteLine(“Codetext: ” + reader.GetCodeText());
}
reader.Close();

Continue Reading
Posted in Aspose.BarCode Product Family |

SCC-14 barcode generation support added in Aspose.BarCode for Java 2.5

We have just released a new version of Aspose.BarCode for Java v2.5, which includes SCC-14 barcode generation capabilities. SCC is also known as Shipping Container Code, EAN-14 and UCC-14.

Continue Reading
Posted in Aspose.BarCode Product Family |