We’ve created and updating regularly our sample code library so you may quickly learn searchablepdfmaker progress indication and the step-by-step process in VB.NET. Searchablepdfmaker progress indication in VB.NET can be implemented with ByteScout PDF Extractor SDK. ByteScout PDF Extractor SDK is the SDK is designed to help developers with pdf tables and pdf data extraction from unstructured documents like pdf, tiff, scans, images, scanned and electronic forms. The library is powered by OCR, computer vision and AI to provide unique functionality like table detection, automatic table structure extraction, data restoration, data restructuring and reconstruction. Supports PDF, TIFF, PNG, JPG images as input and can output CSV, XML, JSON formatted data. Includes full set of utilities like pdf splitter, pdf merger, searchable pdf maker and other utilities.
The SDK samples like this one below explain how to quickly make your application do searchablepdfmaker progress indication in VB.NET with the help of ByteScout PDF Extractor SDK. VB.NET sample code is all you need: copy and paste the code to your VB.NET application’s code editor, add a reference to ByteScout PDF Extractor SDK (if you haven’t added yet) and you are ready to go! VB.NET application implementation typically includes multiple stages of the software development so even if the functionality works please test it with your data and the production environment.
ByteScout PDF Extractor SDK is available as free trial. You may get it from our website along with all other source code samples for VB.NET applications.
On-demand (REST Web API) version:
Web API (on-demand version)
On-premise offline SDK for Windows:
60 Day Free Trial (on-premise)
Imports Bytescout.PDFExtractor
Module Program
Sub Main()
Try
Using searchablePDFMaker = New SearchablePDFMaker("demo", "demo")
' Load input file
searchablePDFMaker.LoadDocumentFromFile("sample_ocr.pdf")
' Add Progress change event...
Console.WriteLine("Searchable PDF making in progress: " & vbLf)
AddHandler searchablePDFMaker.ProgressChanged, AddressOf SearchablePDF_ProgressChanged
' Set the location of OCR language data files
searchablePDFMaker.OCRLanguageDataFolder = "c:\Program Files\Bytescout PDF Extractor SDK\ocrdata\"
' Set OCR language
searchablePDFMaker.OCRLanguage = "eng"
' Set PDF document rendering resolution
searchablePDFMaker.OCRResolution = 300
' Save extracted text to file
searchablePDFMaker.MakePDFSearchable("output.pdf")
' Open output file in default associated application
System.Diagnostics.Process.Start("output.pdf")
End Using
Catch ex As Exception
Console.WriteLine(ex.Message)
End Try
Console.WriteLine(vbLf & vbLf & " Press enter key to exit...")
Console.ReadLine()
End Sub
''' <summary>
''' Handle progress change event
''' </summary>
Private Sub SearchablePDF_ProgressChanged(ByVal sender As Object, ByVal ongoingOperation As OngoingOperation, ByVal progress As Double, ByRef cancel As Boolean)
drawTextProgressBar(Convert.ToInt32(progress), 100)
End Sub
''' <summary>
''' Display progress bar
''' </summary>
Private Sub drawTextProgressBar(ByVal progress As Integer, ByVal total As Integer)
'draw empty progress bar
Console.CursorLeft = 0
Console.Write("[") ' start
Console.CursorLeft = 32
Console.Write("]") ' end
Console.CursorLeft = 1
Dim onechunk As Single = 30.0F / total
Dim position As Integer = 1
' draw filled part
For i As Integer = 0 To onechunk * progress - 1
Console.BackgroundColor = ConsoleColor.Green
Console.CursorLeft = Math.Min(System.Threading.Interlocked.Increment(position), position - 1)
Console.Write(" ")
Next
' draw unfilled part
For i As Integer = position To 31
Console.BackgroundColor = ConsoleColor.Gray
Console.CursorLeft = Math.Min(System.Threading.Interlocked.Increment(position), position - 1)
Console.Write(" ")
Next
' draw totals
Console.CursorLeft = 35
Console.BackgroundColor = ConsoleColor.Black
Console.Write(progress.ToString() & " of " & total.ToString() & " ") ' blanks at the end remove any excess
End Sub
End Module
60 Day Free Trial or Visit ByteScout PDF Extractor SDK Home Page
Explore ByteScout PDF Extractor SDK Documentation
Explore Samples
Sign Up for ByteScout PDF Extractor SDK Online Training
Get Your API Key
Explore Web API Docs
Explore Web API Samples
60 Day Free Trial or Visit ByteScout PDF Extractor SDK Home Page
Explore ByteScout PDF Extractor SDK Documentation
Explore Samples
Sign Up for ByteScout PDF Extractor SDK Online Training
Get Your API Key
Explore Web API Docs
Explore Web API Samples
also available as: