Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.
Menurut Model Objek Dokumen dari Aspose.PDF for .NET, file PDF berisi satu atau lebih halaman di mana setiap halaman berisi kumpulan Gambar, Formulir, dan Font dalam objek Sumber Daya. Jadi, untuk mengekstrak gambar dari file PDF, kita akan menjelajahi halaman-halaman individu dari file PDF, mendapatkan kumpulan Gambar dari halaman tertentu dan menyimpannya dalam objek MemoryStream untuk pemrosesan lebih lanjut dengan kelas BarCodeReader dari Aspose.BarCodeRecognition.
// 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();
}
}
}
}
}
Untuk detail lebih lanjut tentang topik yang dibahas dalam artikel ini, kunjungi tautan berikut:
Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.