ByteScout PDF Extractor SDK - C# - PDF-A Compatibility Test - ByteScout

ByteScout PDF Extractor SDK – C# – PDF-A Compatibility Test

  • Home
  • /
  • Articles
  • /
  • ByteScout PDF Extractor SDK – C# – PDF-A Compatibility Test

PDF A compatibility test in C# and ByteScout PDF Extractor SDK

How to use ByteScout PDF Extractor SDK for PDF A compatibility test in C#

The coding tutorials are designed to help you test the features without need to write your own code. ByteScout PDF Extractor SDK was made to help with PDF A compatibility test in C#. ByteScout PDF Extractor SDK is the Software Development Kit (SDK) that is designed to help developers with 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.

Fast application programming interfaces of ByteScout PDF Extractor SDK for C# plus the instruction and the C# code below will help you quickly learn PDF A compatibility test. This C# sample code should be copied and pasted into your application’s code editor. Then just compile and run it to see how it works. Further enhancement of the code will make it more vigorous.

Trial version can be downloaded from our website. Source code samples for C# and documentation are included.

On-demand (REST Web API) version:
 Web API (on-demand version)

On-premise offline SDK for Windows:
 60 Day Free Trial (on-premise)

Program.cs
      
using System; using Bytescout.PDFExtractor; namespace PDFATest { class Program { static void Main(string[] args) { // Create Bytescout.PDFExtractor.PDFAValidator instance PDFAValidator validator = new PDFAValidator(); validator.RegistrationName ="demo"; validator.RegistrationKey = "demo"; // Load sample PDF document validator.LoadDocumentFromFile("sample1.pdf"); if (validator.IsPDFA) Console.WriteLine("This file conforms to the PDF/A standard"); else { Console.WriteLine("This file doesn't conform to the PDF/A standard."); Console.WriteLine("Issues:"); foreach (string validationError in validator.ValidationErrors) Console.WriteLine(validationError); } // Cleanup validator.Dispose(); Console.WriteLine(); Console.WriteLine("Press any key to continue..."); Console.ReadLine(); } } }

ON-PREMISE OFFLINE SDK

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

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 PDF Extractor SDK Home Page

Explore ByteScout PDF Extractor SDK Documentation

Explore Samples

Sign Up for ByteScout PDF Extractor SDK Online Training

ON-DEMAND REST WEB API

Get Your API Key

Explore Web API Docs

Explore Web API Samples

Tutorials:

prev
next