在生产环境中测试,无水印。
随时随地满足您的需求。
获得30天的全功能产品。
几分钟内就能启动并运行。
在您的产品试用期间,全面访问我们的支持工程团队。
C# 条码库
using IronBarCode;
using System.Drawing;
// Reading a barcode is easy with IronBarcode!
var resultFromFile = BarcodeReader.Read(@"file/barcode.png"); // From a file
var resultFromBitMap = BarcodeReader.Read(new Bitmap("barcode.bmp")); // From a bitmap
var resultFromImage = BarcodeReader.Read(Image.FromFile("barcode.jpg")); // From an image
var resultFromPdf = BarcodeReader.ReadPdf(@"file/mydocument.pdf"); // From PDF use ReadPdf
// To configure and fine-tune barcode reading, utilize the BarcodeReaderOptions class
var myOptionsExample = new BarcodeReaderOptions
{
// Choose a reading speed from: Faster, Balanced, Detailed, ExtremeDetail
// There is a tradeoff in performance as more detail is set
Speed = ReadingSpeed.Balanced,
// Reader will stop scanning once a single barcode is found (if set to true)
ExpectMultipleBarcodes = true,
// By default, all barcode formats are scanned for
// Specifying a subset of barcode types to search for would improve performance
ExpectBarcodeTypes = BarcodeEncoding.AllOneDimensional,
// Utilize multiple threads to read barcodes from multiple images in parallel
Multithreaded = true,
// Maximum threads for parallelized barcode reading
// Default is 4
MaxParallelThreads = 2,
// The area of each image frame in which to scan for barcodes
// Specifying a crop area will significantly improve performance and avoid noisy parts of the image
CropArea = new Rectangle(),
// Special setting for Code39 barcodes
// If a Code39 barcode is detected, try to read with both the base and extended ASCII character sets
UseCode39ExtendedMode = true
};
// Read with the options applied
var results = BarcodeReader.Read("barcode.png", myOptionsExample);
// Create a barcode with one line of code
var myBarcode = BarcodeWriter.CreateBarcode("12345", BarcodeWriterEncoding.EAN8);
// After creating a barcode, we may choose to resize
myBarcode.ResizeTo(400, 100);
// Save our newly-created barcode as an image
myBarcode.SaveAsImage("EAN8.jpeg");
Image myBarcodeImage = myBarcode.Image; // Can be used as Image
Bitmap myBarcodeBitmap = myBarcode.ToBitmap(); // Can be used as Bitmap
在最近的一次现场会议中,Iron Software团队演示了如何使用IronBarcode生成和读取多种条形码格式。 由我们的销售工程师 Shadman Majid 和销售主管 Craig Beaumont 主持的会议涵盖了从简单的条形码生成到高级读取用例的所有内容,展示了 IronBarcode 库在实际应用中的快速性和灵活性。
Shadman 通过仅仅使用几行 C# 代码和 IronBarcode 来生成条形码的便捷性进行了介绍。 该工具支持多种条形码格式,并能轻松自定义输出为PNG或PDF。 这对于需要快速可靠的条形码生成的行业来说是理想的选择,从制造业到物流业。
在生成演示之后,克雷格接手了IronBarcode的条形码读取功能。
这些功能使IronBarcode非常适合复杂的自动化工作流程,特别是在文档可能包含多种条形码类型或处理批量数据的情况下。
Craig还分享了IronBarcode已在其中产生影响的一些实际用例:
安全与身份验证 – 通过基于条码的ID和访问凭证验证用户身份。
Shadman 回来演示了 IronBarcode 如何在实时处理中处理单个和多个条形码读取。
单个条形码读取
条形码值
格式 (例如,Aztec)
坐标 (x, y 位置)
高度、宽度和编码类型
使用IronBarcode,开发人员可以轻松地跨多种格式和平台生成和读取条形码,包括桌面、网络,甚至通过.NET MAUI进行移动平台。 无论您是在构建仓库跟踪系统还是零售结账应用程序,IronBarcode 都提供了所需的灵活性和性能,以快速完成工作。
准备好尝试了吗? 立即获取30天免费试用。
PM > Install-Package BarCode
30天试用密钥 立即获取。
15天试用密钥 立即获取。
无需信用卡
您的试用密钥应该在邮件中。
成功提交。
如果没有,请联系
support@ironsoftware.com
免费开始
无需信用卡
在生产环境中测试,无水印。
随时随地满足您的需求。
获得30天的全功能产品。
几分钟内就能启动并运行。
在您的产品试用期间,全面访问我们的支持工程团队。
预约30分钟的个人演示。
无需合同,无需卡片信息,无需承诺。
10 个 .NET API 产品用于您的办公文档