Aspose.BarCode  for SQL Reporting Services

SSRS Barcode APIs

Generate Linear & 2D barcodes from within Microsoft SQL Server Reporting Services.

  Download Free Trial
  
 

Aspose.BarCode for Reporting Services is a comprehensive solution for rendering linear and 2D barcodes within Microsoft SQL Server Reporting Services. Barcode labels can be encoded with Non-English characters and rendered in BMP, JPEG, GIF and PNG formats.

Advanced .NET Barcode API Features

Integration with SQL Server Reporting Services

Aspose.BarCode for Reporting Services can be easily integrated into existing or new projects by adding Aspose.BarCode for Reporting Services to Visual Studio Toolbox. Once available in the Toolbox, you can drag and drop it onto the project wherever desired.

Barcode Generation Live Example

This barcode API allows developers to generate high-quality barcodes by setting the barcode type, the input data to encode, and custom appearance-related properties. It provides a variety of options for fine-tuning the appearance of the generated barcodes, including the background and foreground colors, font, size, resolution, and text captions.

Code to be executed - C#


// Initialize barcode generator
using (var generator = new Aspose.BarCode.Generation.BarcodeGenerator(EncodeTypes.QR, ""))
{
  // Set parameters
  generator.Parameters.Barcode.XDimension.Millimeters *= 2;
  generator.Parameters.Barcode.CodeTextParameters.Location = CodeLocation.Below;

  // Generate image
  Bitmap res = generator.GenerateBarCodeImage();
}
Generation result

Custom Barcode Size and Color

Aspose.BarCode for SQL Reporting Services API provides rich functionality to generate barcode images with custom parameters. Developers can create applications to generate barcodes of any color or size depending on business needs. It is possible to customize the appearance of all barcode elements, including colors of bars, background, borders, and text captions, as well as their positioning. Barcode can be generated with or without displaying input text, upper and/or lower caption, paddings, and borders. Barcode size can be set automatically depeding on the X-dimension or manually. It can be defined in various units, such as millimeters, inches, points, or pixels. If required, image proportions and resolution can be modified. The size of text font can be customized as well.

Barcode Recognition Live Example

The barcode reader API provides a set of features for scanning, detecting, and reading 1D, 2D, and postal barcodes. With just a few lines of code, developers can easily integrate this functionality into their applications and use it to detect and decode a wide range of commonly used barcodes. The API is designed to be user-friendly and intuitive, making it easy for developers to quickly and easily add barcode scanning capabilities to their applications.

Ready to recognize Recognizing Drop a file here or click to browse *

* By uploading your files or using the service you agree with our Terms of use and Privacy Policy.

Code to be executed - C#

    
// Initialize barcode reader
using (var reader = new Aspose.BarCode.BarCodeReader("<file name>", DecodeType.AllSupportedTypes))
{
    // Recognize barcodes on the image
    foreach (var barcode in reader.ReadBarCodes())
    {
        // Display the recognition result
        Console.WriteLine($"{barcode.CodeTypeName}: {barcode.CodeText}");
    }
}

Recognition result

Barcode Designer for Visual Studio

The layout of the barcode labels can be altered by using the fully-integrated Barcode Designer for Visual Studio. Developers can preview and adjust the barcode images at design-time. The designer also allows customizing various settings to adjust the appearance of barcode images.

What People Are Saying

Don't just take our word for it. See what users have to say about APIs.

 
 
View Case Studies
  

Support and Learning Resources