Link Search Menu Expand Document

PDF417 Barcode With Binary Data - C#

BarCode SDK sample in C# demonstrating ‘PDF417 Barcode With Binary Data’

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

namespace PDF417WithBinaryData
{
	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.PDF417;
				// Force binary mode
				barcode.Options.PDF417CompactionMode = PDF417CompactionMode.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");
			}
		}
	}
}

Download Source Code (.zip)

Return to the previous page Explore BarCode SDK