Establecer opciones del lector de códigos de barras PDF
using IronBarCode;
PdfBarcodeReaderOptions myPdfOptionsExample = new PdfBarcodeReaderOptions()
{
// The password string to open the PDF if there is one
Password = "password123",
// Pages of the PDF you want to scan
PageNumbers = new[] { 1, 3 },
// By default, all barcode formats are scanned for
// Specifying a subset of barcode types to search for would improve performance
ExpectBarcodeTypes = BarcodeEncoding.AllOneDimensional,
// The DPI (dots per inch) to render each barcode image for reading
DPI = 72,
// The scaling factor to scale the width and height when converting the PDF to image
// Default is 3.5 for both dimensions
Scale = 4
};
// Read the pdf with the options applied
var results = BarcodeReader.ReadPdf("barcode.pdf", myPdfOptionsExample);
Imports IronBarCode
Private myPdfOptionsExample As New PdfBarcodeReaderOptions() With {
.Password = "password123",
.PageNumbers = { 1, 3 },
.ExpectBarcodeTypes = BarcodeEncoding.AllOneDimensional,
.DPI = 72,
.Scale = 4
}
' Read the pdf with the options applied
Private results = BarcodeReader.ReadPdf("barcode.pdf", myPdfOptionsExample)
Install-Package BarCode
Establecer opciones del lector de códigos de barras PDF
IronBarcode tiene una variedad de opciones en la clase PdfBarcodeReaderOptions para soportar lecturas personalizadas y optimizadas para PDFs específicamente. Se encargará de las contraseñas de los PDF, de elegir las páginas que se van a escanear, los PPP con los que se va a analizar el PDF y cualquier escalado adicional necesario para mejorar la calidad de lectura.