워터마크 없이 실제 운영 환경에서 테스트해 보세요.
필요한 곳 어디에서든 작동합니다.
모든 기능을 갖춘 제품을 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
.NET 10, 9, 8, 7, 6, 5, Core, Standard 또는 Framework 에서 실행되는 C#, F#, VB.NET 용으로 설계되었습니다.
모바일 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가 QR, Aztec, Data Matrix, PDF417, UPC, EAN, Code128 같은 주요 바코드 형식을 단일 .NET 어셈블리에서 읽고 쓸 수 있습니까?예!
단일 이미지나 PDF 페이지에서 여러 유형의 바코드를 한꺼번에 읽을 수 있습니까?예!
외부 페이지-이미지 변환이 필요 없이 PDF에서 직접 바코드를 읽을 수 있습니까?예!
생성된 QR 코드를 로고, 맞춤 색상, 조정된 테두리로 스타일링할 수 있습니까?예!
읽기 속도를 높이기 위해 이미지 보정 필터(소음 제거, 대비, 비뚤어짐)를 적용합니까?예!
값, 이진 데이터, 방향 및 경계 상자를 포함한 세부 결과 데이터를 반환합니까?예!
바코드를 디스크에 저장하지 않고 바로 Stream 또는 byte[]로 생성할 수 있습니까?예!
Windows, Linux, macOS, Docker, Azure의 .NET Core, Standard 및 Framework에서 완전히 크로스 플랫폼을 지원합니까?예!
멀티 스레딩과 비동기를 사용하여 고성능 배치 처리를 지원하나요?예!
바코드를 HTML 데이터 URI로 출력하거나 기존 PDF에 스탬프할 수 있나요?예!
부분적으로 손상된 경우에도 스캔 가능한 내결함성 바코드를 지원하나요?예!
지금 무료로 내 라이브 프로젝트에서 IronBarcode를 테스트할 수 있나요?예! 30일 무료 체험을 시작하려면 여기를 클릭하세요