ByteScout BarCode Generator SDK - C# - Aztec With Binary Data - ByteScout
Announcement
Our ByteScout SDK products are sunsetting as we focus on expanding new solutions.
Learn More Open modal
Close modal
Announcement Important Update
ByteScout SDK Sunsetting Notice
Our ByteScout SDK products are sunsetting as we focus on our new & improved solutions. Thank you for being part of our journey, and we look forward to supporting you in this next chapter!

ByteScout BarCode Generator SDK – C# – Aztec With Binary Data

  • Home
  • /
  • Articles
  • /
  • ByteScout BarCode Generator SDK – C# – Aztec With Binary Data

ByteScout BarCode Generator SDK – C# – Aztec With Binary Data

Program.cs

using System.Diagnostics;
using System.Text;
using Bytescout.BarCode;

namespace AztecWithBinaryData
{
	class Program
	{
		static void Main(string[] args)
		{
			// Create Barcode component instance
			using (Barcode barcode = new Barcode())
			{
				barcode.RegistrationName = "demo";
				barcode.RegistrationKey = "demo";

				// Set barcode type
				barcode.Symbology = SymbologyType.Aztec;
				// Force binary mode
				barcode.Options.AztecCompactionMode = AztecCompactionMode.Binary;

				// Sample byte array to use as value  
				byte[] byteArray = new byte[] { 0, 10, 11, 12, 13, 14, 15, 0xFF };

				// Set value by converting byte array to string  
				barcode.Value = Encoding.ASCII.GetString(byteArray);

				// Save barcode image
				barcode.SaveImage("result.png");

				// Open output image in default associated application
				Process.Start("result.png");
			}
		}
	}
}


  Click here to get your Free Trial version of the SDK

Tutorials:

prev
next