Skip to content

crackoff/Barcodes

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Description

Library for .NET Core for PDF417 barcode creation

Installation

To install Barcodes.Pdf417, run the following command in the Package Manager Console

PM> Install-Package Barcodes.Pdf417

Examples

Text-based barcode:

var barcode = new Barcode("Hello, world!", Settings.Default);
barcode.Canvas.SaveBmp(args[0]);

Bytes-based barcode:

var barcode = new Barcode(new byte[]
{
    0x30, 0x31, 0x32, 0x33, 0x34, 0x35, 0x36, 0x37, 0x38, 0x39,
    0x40, 0x41, 0x42, 0x43, 0x44, 0x45, 0x46, 0x47, 0x48
}, Settings.Default);
barcode.Canvas.SaveBmp(args[0]);

About

.NET Core library for PDF417 barcode creation

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages