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

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

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

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

Learn to code in VB.NET to make compare pdf documents with pdf extractor sdk with this simple How-To tutorial

This page helps you to learn from code samples for programming in VB.NET. ByteScout Data Extraction Suite helps with compare pdf documents with pdf extractor sdk in VB.NET. ByteScout Data Extraction Suite is the set that includes 3 SDK products for data extraction from PDF, scans, images and from spreadsheets: PDF Extractor SDK, Data Extraction SDK, Barcode Reader SDK.

This rich and prolific sample source code in VB.NET for ByteScout Data Extraction Suite contains various functions and options you should do calling the API to implement compare pdf documents with pdf extractor sdk. Follow the steps-by-step instructions from the scratch to work and copy and paste code for VB.NET into your editor. Use of ByteScout Data Extraction Suite in VB.NET is also described in the documentation included along with the product.

On our website you may get trial version of ByteScout Data Extraction Suite for free. Source code samples are included to help you with your VB.NET application.

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 Data Extraction Suite Home Page

Explore ByteScout Data Extraction Suite Documentation

Explore Samples

Sign Up for ByteScout Data Extraction 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 Data Extraction Suite Home Page

Explore ByteScout Data Extraction Suite Documentation

Explore Samples

Sign Up for ByteScout Data Extraction Suite Online Training

ON-DEMAND REST WEB API

Get Your API Key

Explore Web API Docs

Explore Web API Samples

Tutorials:

prev
next