Syncfusion aspnetmvc barcodes
Skill syncfusion/aspnetmvc-ui-components-skills/skills/syncfusion-aspnetmvc-barcodes
This repository contains AI Skills of ASPNET MVC UI Components.
npx -y skills add syncfusion/aspnetmvc-ui-components-skills --skill syncfusion-aspnetmvc-barcodesAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
3 things to look at
- 20 days oldThe repository was created 20 days ago. New is not bad, but a brand new repository carrying a familiar-sounding name is the shape a typosquat arrives in, and there has been no time for anyone else to find a problem with it.
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Use this skill whenever the user asks to generate, customize, render, or export barcodes, QR codes, or DataMatrix codes using Syncfusion ASP.NET MVC Barcode components. Trigger this skill for requests involving BarcodeGenerator,QRCodeGenerator, or DataMatrixGenerator, including barcode types such as Code39,Code128, and Codabar, visual customization (color, size, display text), QR logo embedding, and exporting barcodes as JPG, PNG, or Base64 in ASP.NET MVC projects.
SKILL.md
4.8 KB, as published. Nobody here has run it
Implementing Barcodes (ASP.NET MVC)
Syncfusion EJ2 ASP.NET MVC provides three barcode components via HTML helpers:
| Component | HTML Helper | Use When |
|---|---|---|
| BarcodeGenerator | Html.EJS().BarcodeGenerator() | Linear 1D barcodes (Code39, Code128, Codabar, etc.) |
| QR Code Generator | Html.EJS().QRCodeGenerator() | 2D QR codes, optional logo embedding |
| DataMatrix Generator | Html.EJS().DataMatrixGenerator() | 2D DataMatrix barcodes |
All three support color customization, dimension control, display text, and export to image or Base64.
When to Use This Skill
- Rendering any barcode type in an ASP.NET MVC view
- Choosing between BarcodeGenerator, QR Code, and DataMatrix
- Customizing barcode appearance (color, size, text)
- Embedding a logo in a QR code
- Exporting barcodes as images or Base64 strings
Important: API Verification Required
API Verification Required: Always verify API class names, properties, and method signatures by reading reference files (references/*.md) BEFORE generating code examples. Do not assume or infer class names.
Documentation and Navigation Guide
Getting Started
π Read: references/getting-started.md
- NuGet package installation (
Syncfusion.EJ2.MVC5) - Namespace registration in
Web.config - CDN stylesheet and script setup in
_Layout.cshtml - Script manager registration (
@Html.EJS().ScriptManager()) - First render of all three barcode components
Barcode Types (1D β BarcodeGenerator)
π Read: references/barcode-types.md
- Code39, Code39 Extended
- Code11, Codabar, Code32
- Code93, Code93 Extended
- Code128 (Code Sets A/B/C) and special characters
- When to choose each type
QR Code Generator
π Read: references/qr-code.md
- QR code versioning (v1βv40, auto-selected)
- Basic QR code rendering
- Color and dimension customization
- Embedding a logo/icon (local path, URL, Base64)
- Logo size limits and errorCorrectionLevel guidance
DataMatrix Generator
π Read: references/data-matrix.md
- DataMatrix overview and use cases
- Basic rendering
- Color and dimension customization
- Display text customization
Customization (Color, Dimensions, Text)
π Read: references/customization.md
foreColorproperty for all three generatorsWidthandHeightdimension controlDisplayTextβtextfor custom label override- Rendering mode (
SVG)
Export
π Read: references/export.md
exportImage(filename, format)β download as JPG or PNGexportAsBase64Image(format)β returns Base64 string- Supported formats: JPG, PNG
- Applies to all three barcode components
Quick Start
BarcodeGenerator (Code128)
@(Html.EJS().BarcodeGenerator("container")
.Width("200px")
.Height("150px")
.Type(Syncfusion.EJ2.BarcodeGenerator.BarcodeType.Code128)
.Value("SYNCFUSION")
.Render())
QR Code
@(Html.EJS().QRCodeGenerator("container")
.Width("200px")
.Height("150px")
.Value("https://syncfusion.com")
.Render())
DataMatrix
@(Html.EJS().DataMatrixGenerator("container")
.Width("200px")
.Height("150px")
.Value("Syncfusion")
.Render())
Common Patterns
Choose barcode type based on content
- Numeric only, telecom β Codabar or Code11
- Uppercase alphanumeric β Code39
- Full ASCII, variable length β Code128 (most common for general use)
- Italian pharmaceutical β Code32
- Dense alphanumeric β Code93
- URL, large payload, 2D β QR Code
- Label/print media, 2D β DataMatrix
Apply red foreground color (BarcodeGenerator)
@(Html.EJS().BarcodeGenerator("container")
.Width("300px")
.Height("300px")
.ForeColor("red")
.Type(Syncfusion.EJ2.BarcodeGenerator.BarcodeType.Code128)
.Value("SYNCFUSION")
.Render())
Export barcode on button click
<button onclick="exportBarcode()">Export</button>
<script>
function exportBarcode() {
var barcode = document.getElementById("container").ej2_instances[0];
barcode.exportImage('MyBarcode', 'JPG');
}
</script>