Barcode Xpress for .NET Core v13.5 - Updated
Try the Sample Application
Getting Started > Try the Sample Application

Samples

You can try Barcode Xpress by using the following samples:

Hello Barcode Xpress for Net Core

Hello Barcode Xpress for Net Core is a simple barcode reading sample hosted on GitHub to demonstrate how easy it is to read barcodes from your images with Barcode Xpress:

Read Barcodes

Read Barcodes is a command line sample that ships with the Barcode Xpress archive and allows you to open a 1, 8, or 24-bit image and search it for barcodes.

To list all the barcode types you can search for, use the list option:

dotnet run --list

To print out how to use this sample use the usage option:

dotnet run --usage

Running the sample follows this basic format:

dotnet run [options] <image1> [<image2> ... <imageN>]

You can pass in a different number of specific barcode types to search for:

dotnet run -t MicroPDF417 ../images/Barcode-All-Supported-Types.bmp
dotnet run -t MicroPDF417 -t QRCode ../images/Barcode-All-Supported-Types.bmp

Barcode Xpress runs in Watermark evaluation mode if started without a license and the barcode value will be partially hidden. If you would like to do a full-featured evaluation of the product, contact us.

See Also

How To

Build and Run the Sample