Skip to content

Instantly share code, notes, and snippets.

@farhan-raza
Created September 21, 2022 20:19
Show Gist options
  • Save farhan-raza/05577a81858fd5a3682fa468f2dbd933 to your computer and use it in GitHub Desktop.
Save farhan-raza/05577a81858fd5a3682fa468f2dbd933 to your computer and use it in GitHub Desktop.
Generate Aztec Barcode 2D Programmatically in C#
// Initialize BarcodeGenerator class object
BarcodeGenerator gen = new BarcodeGenerator(EncodeTypes.Aztec, "Åspóse.Barcóde© is used to generate & recognize barcodes");
// Set size value in pixels
gen.Parameters.Barcode.XDimension.Pixels = 4;
// Set symbol mode FullRange
gen.Parameters.Barcode.Aztec.AztecSymbolMode = AztecSymbolMode.FullRange;
// Set error correction capacity to 50%
gen.Parameters.Barcode.Aztec.AztecErrorLevel = 50;
// Save output Aztec barcode
gen.Save("Aztec50.png", BarCodeImageFormat.Png);
// Initialize BarcodeGenerator class object
BarcodeGenerator gen = new BarcodeGenerator(EncodeTypes.Aztec, "Åspóse.Barcóde©");
// Set size value in pixels
gen.Parameters.Barcode.XDimension.Pixels = 4;
// Set symbol mode Compact
gen.Parameters.Barcode.Aztec.AztecSymbolMode = AztecSymbolMode.Compact;
// Save output Aztec barcode
gen.Save("AztecCompact.png", BarCodeImageFormat.Png);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment