Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.
根据Aspose.PDF for .NET的文档对象模型,PDF文件包含一个或多个页面,每个页面包含资源对象中的图像、表单和字体集合。因此,为了从PDF文件中提取图像,我们将遍历PDF文件的每个页面,从特定页面获取图像集合,并将其保存到MemoryStream对象中,以便使用Aspose.BarCodeRecognition的BarCodeReader类进行进一步处理。
// For complete examples and data files, visit https://github.com/aspose-pdf/Aspose.PDF-for-.NET
private static void IdentifyBarcodes()
{
// The path to the documents directory
var dataDir = RunExamples.GetDataDir_AsposePdf_DocumentConversion();
// Open PDF document
using (var document = new Aspose.Pdf.Document(dataDir + "IdentifyBarcodes.pdf"))
{
// Traverse through individual pages of PDF file
for (int pageCount = 1; pageCount <= document.Pages.Count; pageCount++)
{
// Traverse through each image extracted from PDF pages
foreach (var xImage in document.Pages[pageCount].Resources.Images)
{
using (var imageStream = new MemoryStream())
{
// Save PDF document image
xImage.Save(imageStream, System.Drawing.Imaging.ImageFormat.Jpeg);
// Set the stream position to the begining of Stream
imageStream.Position = 0;
// Instantiate BarCodeReader object
var barcodeReader = new Aspose.BarCodeRecognition.BarCodeReader(imageStream, Aspose.BarCodeRecognition.BarCodeReadType.Code39Extended);
while (barcodeReader.Read())
{
// Get BarCode text from BarCode image
var code = barcodeReader.GetCodeText();
// Write the BarCode text to Console output
Console.WriteLine("BARCODE : " + code);
}
// Close BarCodeReader object to release the Image file
barcodeReader.Close();
}
}
}
}
}
有关本文中涵盖主题的更多详细信息,请访问以下链接:
Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.