ITF-14 e Interleaved 2 di 5 (I-2/5) sono simboli lineari per cartoni, palletti e logistica interna. ITF-14, codifica un *GTIN-14 (14 cifre, compresi i numeri di controllo Mod-10) ed è comunemente stampato con barre di portatore sul cartone corrugato. I-2/5 è una simbologia compatta, numerica-solo, equale-length spesso utilizzata per tracce interne e casi.
Esempio completo ( Copy-Paste Ready)
Quello che ottieni:
- Un’applicazione .NET console che può produrre i codici a barre ITF-14 e I-2/5.
- A GTIN-14 check digit assistente per ITF-14.
- Implementazione di lunghezza esterna per I-2/5.
- Deflitti sensibili per la stampa (margine, spessore di bar, altezza).
- PNG di produzione per filename.
1) Creare il progetto e aggiungere il pacchetto
dotnet new console -n ItfAndI25Demo -f net8.0
cd ItfAndI25Demo
dotnet add package Aspose.BarCode
2) sostituzione Program.cs
Con il seguente
using System;
using Aspose.BarCode.Generation;
namespace ItfAndI25Demo
{
class Program
{
// Usage:
// ITF-14 -> dotnet run -- itf14 400638133393 260930
// (first arg "itf14", second is GTIN base ≤13 digits; we'll compute the 14th check digit)
// I-2/5 -> dotnet run -- i25 123456789
//
// Output files:
// ITF14_<gtin14>.png
// I25_<dataEven>.png
static int Main(string[] args)
{
if (args.Length < 2)
{
Console.WriteLine("Usage:");
Console.WriteLine(" ITF-14: dotnet run -- itf14 <gtin_base_≤13_digits> [xPixels=3] [heightMM=22] [marginMM=4]");
Console.WriteLine(" I-2/5 : dotnet run -- i25 <numeric_data> [xPixels=3] [heightMM=22] [marginMM=4]");
return 1;
}
var mode = args[0].Trim().ToLowerInvariant();
int xPixels = args.Length > 2 && int.TryParse(args[2], out var x) ? Math.Max(1, x) : 3;
float heightMM = args.Length > 3 && float.TryParse(args[3], out var h) ? Math.Max(10f, h) : 22f;
float marginMM = args.Length > 4 && float.TryParse(args[4], out var m) ? Math.Max(1f, m) : 4f;
try
{
switch (mode)
{
case "itf14":
{
string gtinBase = args[1].Trim();
if (gtinBase.Length > 13 || !IsAllDigits(gtinBase))
throw new ArgumentException("For ITF-14, provide a numeric GTIN base (≤13 digits). The 14th check digit will be computed.");
// Build full GTIN-14: left-pad to 13 digits, then add Mod-10 check digit
string gtin13 = gtinBase.PadLeft(13, '0');
char check = CalcGtin14CheckDigit(gtin13);
string gtin14 = gtin13 + check;
// ITF-14 encodes the 14-digit GTIN
using var gen = new BarCodeGenerator(EncodeTypes.ITF14, gtin14);
// Print-friendly defaults
gen.Parameters.Barcode.XDimension.Pixels = xPixels; // bar/module thickness
gen.Parameters.Barcode.BarHeight.Millimeters = heightMM;
gen.Parameters.Barcode.LeftMargin.Millimeters = marginMM;
gen.Parameters.Barcode.RightMargin.Millimeters = marginMM;
gen.Parameters.Barcode.TopMargin.Millimeters = Math.Max(2f, marginMM / 2f);
gen.Parameters.Barcode.BottomMargin.Millimeters = Math.Max(2f, marginMM / 2f);
// Optional: show human-readable text below (depends on layout preference)
gen.Parameters.Barcode.CodeTextParameters.Location = CodeLocation.Below;
gen.Parameters.Barcode.CodeTextParameters.FontSize.Point = 8f;
// Save PNG (lossless)
string file = $"ITF14_{gtin14}.png";
gen.Save(file, BarCodeImageFormat.Png);
Console.WriteLine($"✅ ITF-14 saved: {file}");
break;
}
case "i25":
case "interleaved2of5":
case "interleaved_2_of_5":
{
string data = args[1].Trim();
if (!IsAllDigits(data))
throw new ArgumentException("I-2/5 requires numeric data.");
// I-2/5 needs an even number of digits; if odd, left-pad with '0'
string evenData = data.Length % 2 == 0 ? data : "0" + data;
using var gen = new BarCodeGenerator(EncodeTypes.Interleaved2of5, evenData);
// Print-friendly defaults
gen.Parameters.Barcode.XDimension.Pixels = xPixels;
gen.Parameters.Barcode.BarHeight.Millimeters = heightMM;
gen.Parameters.Barcode.LeftMargin.Millimeters = marginMM;
gen.Parameters.Barcode.RightMargin.Millimeters = marginMM;
gen.Parameters.Barcode.TopMargin.Millimeters = Math.Max(2f, marginMM / 2f);
gen.Parameters.Barcode.BottomMargin.Millimeters = Math.Max(2f, marginMM / 2f);
gen.Parameters.Barcode.CodeTextParameters.Location = CodeLocation.Below;
gen.Parameters.Barcode.CodeTextParameters.FontSize.Point = 8f;
string file = $"I25_{evenData}.png";
gen.Save(file, BarCodeImageFormat.Png);
Console.WriteLine($"✅ Interleaved 2 of 5 saved: {file}");
break;
}
default:
throw new ArgumentException("First argument must be 'itf14' or 'i25'.");
}
return 0;
}
catch (Exception ex)
{
Console.Error.WriteLine("❌ Error: " + ex.Message);
return 2;
}
}
// ----------------- Helpers -----------------
// GTIN-14 check digit (Mod-10). Argument must be the first 13 digits as a string.
static char CalcGtin14CheckDigit(string first13)
{
if (first13 is null || first13.Length != 13 || !IsAllDigits(first13))
throw new ArgumentException("CalcGtin14CheckDigit expects 13 numeric digits.");
int sum = 0;
// Rightmost (position 13) is index 12; multiply alternating by 3 and 1, starting with 3 on the right.
// From the rightmost toward left: 3,1,3,1,...
for (int i = 0; i < 13; i++)
{
int digit = first13[12 - i] - '0';
int weight = (i % 2 == 0) ? 3 : 1;
sum += digit * weight;
}
int mod = sum % 10;
int check = (10 - mod) % 10;
return (char)('0' + check);
}
static bool IsAllDigits(string s)
{
if (string.IsNullOrEmpty(s)) return false;
foreach (char c in s)
if (c < '0' || c > '9') return false;
return true;
}
}
}
3) Eseguire alcuni esempi
# ITF-14: pass ≤13 digits, we compute the 14th check digit
dotnet run -- itf14 400638133393
# -> ITF14_0400638133393X.png (X = computed check digit)
# Interleaved 2 of 5: any numeric string; we pad a leading 0 if odd length
dotnet run -- i25 123456789
# -> I25_0123456789.png
Step-by-Step (Che cosa fa il codice)
ITF-14 essenziali
- Codifica una GTIN-14 (14 cifre totali).
- Il ** ultimo numero** è un Mod-10 ** digit di controllo**.
- Spesso stampato grande con quiet zone e a volte barre di portatore (un quadro intorno al codice) su corugato.
Nel codice: accettiamo fino a 13 cifre, la scheda rimane a 13, calcola il 14°, e trasmette tutti i 14 cifri a EncodeTypes.ITF14
.
string gtin13 = gtinBase.PadLeft(13, '0');
char check = CalcGtin14CheckDigit(gtin13);
string gtin14 = gtin13 + check;
using var gen = new BarCodeGenerator(EncodeTypes.ITF14, gtin14);
Interleaved 2 di 5 essenziali
- Compatto, simbolologia ** Numerico-solo**
- Richiede un equivalente numero di numeri (le coppie sono interliate).
- Siamo left-pad con
0
se l’ingresso è distante.
string evenData = data.Length % 2 == 0 ? data : "0" + data;
using var gen = new BarCodeGenerator(EncodeTypes.Interleaved2of5, evenData);
Immatricolazioni amichevoli
- ** Dimensione X** (dossità di bar/modulo):
3 px
È un punto di partenza pratico per le stampanti termali. - Altezza del bar *:
~22 mm
funziona bene sulle etichette 1×3′′ o 2×1′′; adatta per il tuo stock.
- Altezza del bar *:
- Le zone di Quiet:
~4 mm
di sinistra e di destra;2–3 mm
Top e Bottom.
- Le zone di Quiet:
- Testo a lettura umana: mostrare qui sotto (
CodeLocation.Below
Se la tua etichetta ha bisogno di testo.
gen.Parameters.Barcode.XDimension.Pixels = 3;
gen.Parameters.Barcode.BarHeight.Millimeters = 22f;
gen.Parameters.Barcode.LeftMargin.Millimeters = 4f;
gen.Parameters.Barcode.RightMargin.Millimeters = 4f;
gen.Parameters.Barcode.TopMargin.Millimeters = 2f;
gen.Parameters.Barcode.BottomMargin.Millimeters = 2f;
gen.Parameters.Barcode.CodeTextParameters.Location = CodeLocation.Below;
gen.Parameters.Barcode.CodeTextParameters.FontSize.Point = 8f;
Idea di personalizzazione
Bigger etichette / media rigide → aumento
XDimension
per4–5 px
.Tigher labels → ridurre l’altezza della barra (
18–20 mm
Ma non affamare mai le zone silenziose.Suppress HRT (testo leggibile per gli esseri umani) se il tuo layout imprima il testo altrove:
gen.Parameters.Barcode.CodeTextParameters.Location = CodeLocation.None;
Nota sulle barre di portatore (ITF-14): Molti stampanti/standardi preferiscono un frame o le barre top/bottom intorno a ITF-14 per prevenire scansioni brevi.Se la struttura Aspose.BarCode esprime parametri specifici della barra di Portatore, abilitandoli; altrimenti, aggiungere il frame nel layout dell’etichetta.
Troubleshooting
- Non viene scansionato su corugato: Aumentare
XDimension
, assicurare un alto contrasto, aggiungere/confirmare zone silenziose, considerare le barre di portatore. - I-2/5 rifiutato come strana lunghezza: Si è dimenticato di incollare; utilizzare il codice
evenData
La logica . - ITF-14 verifica il numero sbagliato: Assicurati di passare solo i primi 13 cifri al calcolatore; lasciate che il codice conta il 14°.
Migliori pratiche
- ** Parametri di blocco** (X-dimensione, altezza, margine) in configurazione in modo che la produzione sia riproduttibile.
- Verifica i tuoi scanner mirati e i media di etichettatura—tweak per piccoli incrementi.
- Versione dei tuoi template se aggiungi loghi/testo sopra o sotto le barre.
- Mantenere numerico: I-2/5 non supporta i non-digiti; sanitare le entrate presto.
conclusione
Con un paio di righe di codice, è possibile produrre robust, scanner-friendly ITF-14 e Interleaved 2 di 5 barcodi in .NET utilizzando Aspose.BarCode. Inizia con l’esempio completo sopra, poi toccare la spessore di bar, altezza e margine per le tue stampanti e scannatori.
More in this category
- Aspose.BarCode 2D Barcode Reader in .NET: Guida C
- Scansione dei codici QR da Immagini con Aspose.BarCode per .NET
- Riconoscimento multi-barcode in .NET con Aspose.BarCode
- GS1 DataBar (RSS-14) Codice Bar: Retail, Fresh Food & Healthcare Uses
- Personalizzare la generazione di codice bar in .NET con Aspose.BarCode