Demonstration - Aztec
Capable of containing large amounts of data in a variety or characters.
Can be used in both Compact and Full versions.
Supports the use of Extended Channel Interpretation (ECI).
var colorBlack = new BCGColor(Color.Black);
var colorWhite = new BCGColor(Color.White);
// Barcode Part
var code = new BCGaztec();
code.SetScale(2);
code.SetForegroundColor(colorBlack);
code.SetBackgroundColor(colorWhite);
code.SetErrorLevel(23);
code.Parse("Aztec");
// Drawing Part
var drawing = new BCGDrawing(code, colorWhite);
var memoryStream = new MemoryStream();
await drawing
.FinishAsync(BCGDrawing.ImageFormat.Png, memoryStream);