ByteScout Premium Suite - VB.NET - Compare pdf documents with pdf extractor sdk - ByteScout

ByteScout Premium Suite – VB.NET – Compare pdf documents with pdf extractor sdk

  • Home
  • /
  • Articles
  • /
  • ByteScout Premium Suite – VB.NET – Compare pdf documents with pdf extractor sdk

compare pdf documents with pdf extractor sdk in VB.NET using ByteScout Premium Suite

Simple tutorial on how to do compare pdf documents with pdf extractor sdk in VB.NET

Writing of the code to compare pdf documents with pdf extractor sdk in VB.NET can be done by developers of any level using ByteScout Premium Suite. Compare pdf documents with pdf extractor sdk in VB.NET can be applied with ByteScout Premium Suite. ByteScout Premium Suite is the bundle that includes twelve SDK products from ByteScout including tools and components for PDF, barcodes, spreadsheets, screen video recording.

The below SDK samples describe how to quickly make your application do compare pdf documents with pdf extractor sdk in VB.NET with the help of ByteScout Premium Suite. If you want to implement this functionality, you should copy and paste code below into your app using code editor. Then compile and run your application. This basic programming language sample code for VB.NET will do the whole work for you in implementing compare pdf documents with pdf extractor sdk in your app.

ByteScout Premium Suite is available as a 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)

Program.vb
      
Imports Bytescout.PDFExtractor Class Program Friend Shared Sub Main(args As String()) ' Load first document Dim document1 As TextExtractor = New TextExtractor() document1.RegistrationName = "demo" document1.RegistrationKey = "demo" document1.LoadDocumentFromFile(".\comparison1.pdf") ' Load second document Dim document2 As TextExtractor = New TextExtractor() document2.RegistrationName = "demo" document2.RegistrationKey = "demo" document2.LoadDocumentFromFile(".\comparison2.pdf") ' Compare documents Dim comparer As TextComparer = New TextComparer() comparer.RegistrationName = "demo" comparer.RegistrationKey = "demo" comparer.Compare(document1, document2) ' Generate report comparer.GenerateHtmlReport(".\report.html") ' Cleanup document1.Dispose() document2.Dispose() ' Open the report in default browser System.Diagnostics.Process.Start(".\report.html") End Sub End Class

ON-PREMISE OFFLINE SDK

60 Day Free Trial or Visit ByteScout Premium Suite Home Page

Explore ByteScout Premium Suite Documentation

Explore Samples

Sign Up for ByteScout Premium Suite Online Training

ON-DEMAND REST WEB API

Get Your API Key

Explore Web API Docs

Explore Web API Samples

VIDEO

ON-PREMISE OFFLINE SDK

60 Day Free Trial or Visit ByteScout Premium Suite Home Page

Explore ByteScout Premium Suite Documentation

Explore Samples

Sign Up for ByteScout Premium Suite Online Training

ON-DEMAND REST WEB API

Get Your API Key

Explore Web API Docs

Explore Web API Samples

Tutorials:

prev
next