Aspose.BarCode  Cloud SDK for .NET

Read and Recognize Barcodes via .NET SDK

Build cloud-based barcode manipulation Visual Studio applications for 60+ barcode symbologies of 1D, 2D and postal barcode types.

Get Started
  
 

Aspose.BarCode Cloud SDK for .NET allows developers to build barcode image processing applications using C# in .NET and other Visual Studio platforms. You can scan and read barcodes from images, generate new barcodes, and configure barcode properties, such as bar height, barcode size dimensions, image format, and so on. Aspose.BarCode Cloud enables the creation of 1D (linear), 2D, and postal barcodes. A wide range of barcode symbologies is supported, including more than 60 different barcode types, such as EAN, UPC, Codabar, PDF417, QR Code, Micro QR Code, Postnet, Planet, RM4SCC, and others.

Advanced Features of Barcode processing SDK

Generate and read 1D (linear), 2D & postal barcodes

Set Barcode image resolution, angle, height, width, quality & margin

Set auto-size option or specify X and Y dimensions of barcode

Generate barcode with appropriate code text location

Set height of bars & rotate barcode image at an angle

Specify barcode image format and generate multiple barcodes

Recognize specified number of barcodes or read barcode from specific region of image

Read barcode from local/external image or from request body

Generate and recognize barcode with checksum option

Read barcodes via applying image processing algorithms

Generate & read barcode on Aspose cloud storage

Generate barcode to fetch as image stream or save to local disk

Get Started with Barcode Processing

It is easy to get started with Aspose.BarCode Cloud SDK for .NET without any additional tools to be installed. You can simply create an Aspose for Cloud account and then get your application information. Once you obtain App SID & KEY, you can launch Aspose.BarCode Cloud SDK for .NET on any supported platforms.

Generate Barcode of "Code128" in JPG format with string "Sample Text" on it - .NET

// Get APP_KEY and APP_SID from https://dashboard.aspose.cloud/#/apps
var api = new BarCodeApi("APP_KEY", "APP_SID");
using (	Stream response = api.BarCodeGetBarCodeGenerate(new BarCodeGetBarCodeGenerateRequest("Sample text", "Code128", "jpg")))
using (FileStream stream = File.Create("output.jpg"))
{
	response.CopyTo(stream);
}

Supported Barcode Symbologies

Aspose.BarCode Cloud SDK for .NET supports various linear, 2D, and postal symbologies, including more than 60 barcode types.

Supported linear barcode symbologies are:

  • EAN13
  • EAN8
  • UPCA
  • UPCE
  • Interleaved2of5
  • Standard2of5
  • MSI
  • Code11
  • Codabar
  • EAN14(SCC14)
  • SSCC18
  • ITF14
  • Matrix 2 of 5
  • PZN
  • Code128
  • Code39 Extended
  • Code39 Standard
  • Code93 Extended
  • Code16K
  • Code93 Standard
  • IATA 2 of 5
  • OPC
  • GS1Code128
  • ISBN
  • ISMN
  • ISSN
  • ITF6
  • VIN
  • Pharmacode
  • DatabarOmniDirectional
  • DatabarTruncated
  • DatabarLimited
  • DatabarExpanded
  • DatabarStackedOmniDirectional
  • DatabarExpandedStacked
  • DatabarStacked
  • PatchCode
  • Supplement (Decode only)

Supported 2D barcode symbologies are:

  • PDF417
  • MacroPDF417
  • MicroPDF417
  • CompactPDF417 (Decode only)
  • DataMatrix
  • Aztec
  • QR
  • MicroQR
  • DotCode
  • MaxiCode
  • Italian Post 25
  • GS1DataMatrix
  • Code16K

Supported postal barcode symbologies are:

  • Postnet
  • Planet
  • USPS OneCode
  • Australia Post
  • Deutsche Post Identcode
  • Deutsche Post Leticode
  • RM4SCC
  • SingaporePost
  • AustralianPosteParcel
  • SwissPostParcel
  • UpcaGs1DatabarCoupon
  

Support and Learning Resources