在生產環境中無水印測試。
無論您需要它在哪裡運作都可以。
取得30天的完全功能產品。
幾分鐘內即可上手並運行。
在您的產品試用期間,獲得完整的工程師支援
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 file
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");
// Get the barcode as an image for further processing
var myBarcodeImage = myBarcode.Image;
Install-Package BarCode
為 C#, F#, & VB.NET 設計,運行於 .NET 10, 9, 8, 7, 6, 5, Core, Standard 或 Framework
如需 移動 QR 支持,請嘗試我們的 IronQR 庫
您的試用密鑰應該在電子郵件裡。
如果沒有,請聯繫
support@ironsoftware.com
switch(faqQuestions)
{
case "Can I deploy my application using the library to Linux, macOS, or Windows, including Docker containers?": return "YES";
case "Can I render pixel-perfect PDFs from complex HTML5, CSS3, and JavaScript?": return "YES";
case "Is the library thread-safe for use in highly concurrent, multi-threaded server applications and APIs?": return "YES";
case "Can I set custom viewport dimensions and print media CSS to control responsive layouts?": return "YES";
case "Is IronPDF compatible with Azure Functions?": return "YES";
case "Can I permanently redact sensitive text and images from PDF documents?": return "YES";
case "Can I generate a PDF from a URL that requires authentication via custom headers, cookies, or form logins?": return "YES";
case "Can I access PDF DOM through ObjectModel property?": return "YES";
case "Can I programmatically fill, read, and flatten interactive AcroForm?": return "YES";
case "Does it support generating PDF/A and PDF/UA compliant documents for archiving and accessibility standards?": return "YES";
case "Can I secure a document with 256-bit AES password encryption and set user permissions?": return "YES";
case "Can I apply and verify digital signatures on a PDF using X.509 certificates?": return "YES";
case "Can I test IronPDF in my live project for free now?": return "YES, click here to start your 30-day free trial";
}
IronBarcode能否在一個.NET組件中讀寫主要條形碼格式(QR、Aztec、Data Matrix、PDF417、UPC、EAN、Code128)?是的!
能否在單個圖像或PDF頁面中一次性讀取多種不同類型的條形碼?是的!
是否直接從PDF中讀取條形碼而不需要外部頁面轉圖像轉換?是的!
生成的QR碼可以用徽標、自定義顏色進行樣式設計,並調整邊框嗎?是的!
它是否應用圖像校正濾鏡(降噪、對比度、糾偏)來提高讀取率?是的!
是否返回包括值、二進位數據、方向和邊界框的詳細結果數據?是的!
條形碼可以直接生成到Stream或byte[]而不保存到磁碟嗎?是的!
它是否在.NET Core、Standard和Framework上跨平台,在Windows、Linux、macOS、Docker和Azure上運行?是的!
它是否支持多執行緒和異步操作以實現高性能的批處理?是的!
條形碼可以作為HTML數據URI輸出或蓋章到現有的PDF上嗎?是的!
它是否支持在部分損壞時仍可掃描的容錯條形碼?是的!
我可以立即在我的實時專案中免費測試IronBarcode嗎?是的! 點此開始您的30天免費試用