Edit in GitHubLog an issue

Quickstart for PDF Accessibility Auto-Tag API (.NET)

To get started using Adobe PDF Accessibility Auto-Tag API, let's walk through a simple scenario - taking an input PDF document and running PDF Accessibility Auto-Tag API against it. Once the PDF has been tagged, we'll provide the document with tags and optionally, a report file. In this guide, we will walk you through the complete process for creating a program that will accomplish this task.

Prerequisites

To complete this guide, you will need:

  • .NET: version 6.0 or above
  • .Net SDK
  • A build tool: Either Visual Studio or .NET Core CLI.
  • An Adobe ID. If you do not have one, the credential setup will walk you through creating one.
  • A way to edit code. No specific editor is required for this guide.

Step One: Getting credentials

1) To begin, open your browser to https://acrobatservices.adobe.com/dc-integration-creation-app-cdn/main.html?api=pdf-accessibility-auto-tag-api. If you are not already logged in to Adobe.com, you will need to sign in or create a new user. Using a personal email account is recommend and not a federated ID.

Sign in

2) After registering or logging in, you will then be asked to name your new credentials. Use the name, "New Project".

3) Change the "Choose language" setting to ".Net".

4) Also note the checkbox by, "Create personalized code sample." This will include a large set of samples along with your credentials. These can be helpful for learning more later.

5) Click the checkbox saying you agree to the developer terms and then click "Create credentials."

Project setup

6) After your credentials are created, they are automatically downloaded:

alt

Step Two: Setting up the project

1) In your Downloads folder, find the ZIP file with your credentials: PDFServicesSDK-.NetSamples.zip. If you unzip that archive, you will find a folder of samples and the pdfservices-api-credentials.json file.

alt

2) Take the pdfservices-api-credentials.json file and place it in a new directory.

3) In your new directory, create a new file, AutotagPDF.csproj. This file will declare our requirements as well as help define the application we're creating.

Copied to your clipboard
1<Project Sdk="Microsoft.NET.Sdk">
2
3 <PropertyGroup>
4 <OutputType>Exe</OutputType>
5 <TargetFramework>netcoreapp3.1</TargetFramework>
6 </PropertyGroup>
7
8 <ItemGroup>
9 <PackageReference Include="log4net" Version="2.0.12" />
10 <PackageReference Include="Adobe.PDFServicesSDK" Version="3.4.1" />
11 </ItemGroup>
12
13 <ItemGroup>
14 <None Update="Adobe Accessibility Auto-Tag API Sample.pdf">
15 <CopyToOutputDirectory>Always</CopyToOutputDirectory>
16 </None>
17 <None Update="log4net.config">
18 <CopyToOutputDirectory>Always</CopyToOutputDirectory>
19 </None>
20 </ItemGroup>
21
22</Project>

Our application will take a PDF, Adobe Accesibility Auto-Tag API Sample.pdf (downloadable from here) and tag its contents. The results will be saved in a given directory /output.

4) In your editor, open the directory where you previously copied the credentials and created the csproj file. Create a new file, Program.cs.

Now you're ready to begin coding.

Step Three: Creating the application

1) We'll begin by including our required dependencies:

Copied to your clipboard
1using System;
2using System.IO;
3using log4net;
4using log4net.Config;
5using System.Reflection;
6using Adobe.PDFServicesSDK;
7using log4net.Repository;
8using Adobe.PDFServicesSDK.auth;
9using Adobe.PDFServicesSDK.io;
10using Adobe.PDFServicesSDK.exception;
11using Adobe.PDFServicesSDK.io.autotag;
12using Adobe.PDFServicesSDK.pdfops;

2) Now let's define our main class and Main method:

Copied to your clipboard
1namespace AutotagPDF
2{
3 class Program
4 {
5 private static readonly ILog log = LogManager.GetLogger(typeof(Program));
6 static void Main()
7 {
8 }
9 }
10}

3) Now let's define our input and output:

Copied to your clipboard
1String inputPDF = "./Adobe Accessibility Auto-Tag API Sample.pdf";
2
3String outputPath = "./output/AutotagPDF/";
4if(File.Exists(Directory.GetCurrentDirectory() + output))
5{
6 File.Delete(Directory.GetCurrentDirectory() + output);
7}
8String taggedPDF = outputPath + inputPDF +"-tagged-pdf.pdf";
9String taggingReport = outputPath + inputPDF + "-tagging-report.xlsx";

This defines what our output directory will be and optionally deletes it if it already exists. Then we define what PDF will be tagged. (You can download the source we used here.) In a real application, these values would be typically be dynamic.

4) Set the environment variables PDF_SERVICES_CLIENT_ID and PDF_SERVICES_CLIENT_SECRET by running the following commands and replacing placeholders YOUR CLIENT ID and YOUR CLIENT SECRET with the credentials present in pdfservices-api-credentials.json file:

  • Windows:

    • set PDF_SERVICES_CLIENT_ID=<YOUR CLIENT ID>
    • set PDF_SERVICES_CLIENT_SECRET=<YOUR CLIENT SECRET>
  • MacOS/Linux:

    • export PDF_SERVICES_CLIENT_ID=<YOUR CLIENT ID>
    • export PDF_SERVICES_CLIENT_SECRET=<YOUR CLIENT SECRET>

5) Next, we setup the SDK to use our credentials.

Copied to your clipboard
1// Initial setup, create credentials instance.
2Credentials credentials = Credentials.ServicePrincipalCredentialsBuilder()
3 .WithClientId(Environment.GetEnvironmentVariable("PDF_SERVICES_CLIENT_ID"))
4 .WithClientSecret(Environment.GetEnvironmentVariable("PDF_SERVICES_CLIENT_SECRET"))
5 .Build();
6
7// Create an ExecutionContext using credentials and create a new operation instance.
8ExecutionContext executionContext = ExecutionContext.Create(credentials);

This code both points to the credentials downloaded previously as well as sets up an execution context object that will be used later.

6) Now, let's create the operation:

Copied to your clipboard
1AutotagPDFOperation autotagPDFOperation = AutotagPDFOperation.CreateNew();
2
3// Provide an input FileRef for the operation.
4FileRef sourceFileRef = FileRef.CreateFromLocalFile(inputPDF);
5autotagPDFOperation.SetInputFile(sourceFileRef);
6
7// Build AutotagPDF options and set them into the operation.
8AutotagPDFOptions autotagPDFOptions = AutotagPDFOptions.AutotagPDFOptionsBuilder()
9 .ShiftHeadings()
10 .GenerateReport()
11 .Build();

This set of code defines what we're doing (an Auto-Tag operation), points to our local file and specifies the input is a PDF, and then defines options for the Auto-Tag call. PDF Accessibility Auto-Tag API has a few different options, but in this example, we're simply asking for a basic tagging operation, which returns the tagged PDF document and an XLSX report of the document.

7) The next code block executes the operation:

Copied to your clipboard
1// Execute the operation.
2FileRef result = autotagPDFOperation.Execute(executionContext);
3
4// Save the result to the specified location.
5result.GetTaggedPDF().SaveAs(Directory.GetCurrentDirectory() + taggedPDF);
6result.GetReport().SaveAs(Directory.GetCurrentDirectory() + taggingReport);

This code runs the Auto-Tagging process and then stores the result files in the provided output directory.

Example running in the command line

Here's the complete application (Program.cs):

Copied to your clipboard
1using System;
2using System.IO;
3using log4net;
4using log4net.Config;
5using System.Reflection;
6using Adobe.PDFServicesSDK;
7using log4net.Repository;
8using Adobe.PDFServicesSDK.auth;
9using Adobe.PDFServicesSDK.io;
10using Adobe.PDFServicesSDK.exception;
11using Adobe.PDFServicesSDK.io.autotag;
12using Adobe.PDFServicesSDK.pdfops;
13
14namespace AutotagPDF
15{
16 class Program
17 {
18 private static readonly ILog log = LogManager.GetLogger(typeof(Program));
19 static void Main()
20 {
21 // Configure the logging.
22 ConfigureLogging();
23 try
24 {
25
26 String inputPDF = "./Adobe Accessibility Auto-Tag API Sample.pdf";
27
28 String outputPath = "./output/AutotagPDF/";
29 if(File.Exists(Directory.GetCurrentDirectory() + output))
30 {
31 File.Delete(Directory.GetCurrentDirectory() + output);
32 }
33 String taggedPDF = outputPath + inputPDF +"-tagged-pdf.pdf";
34 String taggingReport = outputPath + inputPDF + "-tagging-report.xlsx";
35
36 // Initial setup, create credentials instance.
37 Credentials credentials = Credentials.ServicePrincipalCredentialsBuilder()
38 .WithClientId(Environment.GetEnvironmentVariable("PDF_SERVICES_CLIENT_ID"))
39 .WithClientSecret(Environment.GetEnvironmentVariable("PDF_SERVICES_CLIENT_SECRET"))
40 .Build();
41
42 // Create an ExecutionContext using credentials and create a new operation instance.
43 ExecutionContext executionContext = ExecutionContext.Create(credentials);
44 AutotagPDFOperation autotagPDFOperation = AutotagPDFOperation.CreateNew();
45
46 // Provide an input FileRef for the operation.
47 FileRef sourceFileRef = FileRef.CreateFromLocalFile(input);
48 autotagPDFOperation.SetInputFile(sourceFileRef);
49
50 // Build AutotagPDF options and set them into the operation.
51 AutotagPDFOptions autotagPDFOptions = AutotagPDFOptions.AutotagPDFOptionsBuilder()
52 .ShiftHeadings()
53 .GenerateReport()
54 .Build();
55
56 // Execute the operation.
57 AutotagPDFOutput result = autotagPDFOperation.Execute(executionContext);
58
59 // Save the result to the specified location.
60 result.GetTaggedPDF().SaveAs(Directory.GetCurrentDirectory() + taggedPDF);
61 result.GetReport().SaveAs(Directory.GetCurrentDirectory() + taggingReport);
62
63 Console.Write("Successfully tagged information in PDF.");
64 }
65 catch (ServiceUsageException ex)
66 {
67 log.Error("Exception encountered while executing operation", ex);
68 }
69 catch (ServiceApiException ex)
70 {
71 log.Error("Exception encountered while executing operation", ex);
72 }
73 catch (SDKException ex)
74 {
75 log.Error("Exception encountered while executing operation", ex);
76 }
77 catch (IOException ex)
78 {
79 log.Error("Exception encountered while executing operation", ex);
80 }
81 catch (Exception ex)
82 {
83 log.Error("Exception encountered while executing operation", ex);
84 }
85 }
86
87 static void ConfigureLogging()
88 {
89 ILoggerRepository logRepository = LogManager.GetRepository(Assembly.GetEntryAssembly());
90 XmlConfigurator.Configure(logRepository, new FileInfo("log4net.config"));
91 }
92 }
93}

Next Steps

Now that you've successfully performed your first operation, review the documentation for many other examples and reach out on our forums with any questions. Also remember the samples you downloaded while creating your credentials also have many demos.

  • Privacy
  • Terms of Use
  • Do not sell or share my personal information
  • AdChoices
Copyright © 2024 Adobe. All rights reserved.