Show / Hide Table of Contents

Getting Started

System Requirements

For developing Blazor appls with Neodynamic Barcode Professional for Blazor, the following system and software specifications are required:

  • .NET Core 3.1+ / .NET 5+
  • System.Text.Encoding.CodePages 4.4.0+
  • SkiaSharp 1.60+

First Steps with Barcode Professional for Blazor

  • In your Blazor project, add a ref to Neodynamic.Blazor.Barcode package available from NuGet.

  • Edit your _Imports.razor file and add the following line

@using Neodynamic.Blazor.BarcodeProfessional 
  • In a Blazor page, add the following code to generate a QRCode 2D barcode. PNG is the default output image format. Just set the ImageFormat prop to another supported value.
Note

Barcode Professional can generate most popular Linear (1D), Postal, Component Composite & 2D Barcode Symbologies including Code 39, Code 128, GS1-128, GS1 DataBar (RSS-14), EAN 13 & UPC, ISBN, ISBT-128, Postal (USPS, British Royal Mail, Australia Post, DHL, FedEx), Data Matrix, QR Code, PDF 417, Aztec Code, UPS MaxiCode, Chinese Han Xin Code, IFA PPN, Swiss QR Code, JAB Code 2D Multicolored Matrix, all EAN/UPC Composite Barcodes (CC-A, CC-B & CC-C) and many more barcode standards

<div>
    <input @bind="BarcodeValueToEncode" />
</div>

<BarcodeProfessional Code="@BarcodeValueToEncode" Symbology="Symbology.QRCode" ></BarcodeProfessional>

@code {

    private string BarcodeValueToEncode { get; set; } = "123456789076";
}
  • That's it! Just run your Blazor project a QR Code symbol will be displayed.

Need Assistance?

  • For tech assistance please contact our Support
Back to top Copyright © 2003- Neodynamic SRL
http://www.neodynamic.com