Pdf417 代码是一种二维堆叠线性条码,被许多公司和组织广泛使用和接受。在不同的情况下,您可能需要生成 Pdf417 条码。因此,本文解释了如何生成 Pdf417 条形码并根据您的要求使用 C# 中的不同变体对其进行自定义。
C# API 安装生成 Pdf417 条码
您可以在您的应用程序中快速配置 Aspose.BarCode for .NET API。它允许您在基于 .NET 框架的应用程序中创建和扫描多种类型的 条形码。您可以从 Downloads 部分下载其 DLL 文件,或使用以下 NuGet 安装命令对其进行配置:
PM> Install-Package Aspose.BarCode
在 C# 中生成 Pdf417 条形码
以下步骤说明了如何生成 Pdf417 条形码:
- 创建 BarcodeGenerator 类的对象并设置 EncodeType。
- 设置像素。
- 将输出的 Pdf417 条形码导出为 PNG 格式。
以下示例代码演示了如何在 C# 中生成 Pdf417 条形码:
// 初始化 BarcodeGenerator 类的对象
BarcodeGenerator gen = new BarcodeGenerator(EncodeTypes.Pdf417, "Åspóse");
// 设置像素
gen.Parameters.Barcode.XDimension.Pixels = 2;
// 保存输出 Pdf417 条码
gen.Save("Pdf417.png", BarCodeImageFormat.Png);
在 C# 中生成带有自定义行和列的 Pdf417 条形码
以下步骤详细说明了在 C# 中生成具有不同行数和列数的 Pdf417 的过程。
- 实例化 BarcodeGenerator 类的对象并选择 EncodeType。
- 指定条形码的像素数。
- 设置输出条码的行数和列数。
- 将 Pdf417 条形码导出为 PNG 格式的图像。
下面的代码片段解释了如何在 C# 中生成具有自定义行和列的 Pdf417 条形码:
// 初始化 BarcodeGenerator 类的对象
BarcodeGenerator gen = new BarcodeGenerator(EncodeTypes.Pdf417, "Åspóse");
// 设置像素
gen.Parameters.Barcode.XDimension.Pixels = 2;
// 设置列数和行数
gen.Parameters.Barcode.Pdf417.Columns = 4;
gen.Parameters.Barcode.Pdf417.Rows = 9;
// 保存输出 Pdf417 条码
gen.Save("Pdf417RowColumns.png", BarCodeImageFormat.Png);
获得免费许可证
您可以申请 免费临时许可证 来评估 API,而没有任何评估水印或限制。
结论
在本文中,您了解了如何在 C# 中以编程方式生成 Pdf417 条形码。同样,本文还介绍了在 C# 中以编程方式设置行数和列数的不同选项。此外,您可以通过访问 documentation 空间了解 API 的其他功能。您可以在 论坛 上写信向我们提出任何疑问或疑虑,我们将很乐意为您提供帮助。