Edit in GitHubLog an issue

Quickstart for Adobe Document Generation API (.NET)

To get started using Adobe Document Generation API, let's walk through a simple scenario - using a Word document as a template for dynamic receipt generation in PDF. 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=document-generation-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, GeneratePDF.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="log4net.config">
15 <CopyToOutputDirectory>Always</CopyToOutputDirectory>
16 </None>
17 </ItemGroup>
18
19</Project>

Our application will take a Word document, receiptTemplate.docx (downloadable from here), and combine it with data in a JSON file, receipt.json (downloadable from here), to be sent to the Acrobat Services API and generate a receipt PDF.

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) Let's start by looking at the Word template. If you open the document in Microsoft Word, you'll notice multiple tokens throughout the document (called out by the use of {{ and }}).

Example of tokens

When the Document Generation API is used, these tokens are replaced with the JSON data sent to the API. These tokens support simple replacements, for example, {{Customer.Name}} will be replaced by a customer's name passed in JSON. You can also have dynamic tables. In the Word template, the table uses invoice items as a way to dynamically render whatever items were ordered. Conditions can also be used to hide or show content as you can see two conditions at the end of the document. Finally, basic math can be also be dynamically applied, as seen in the "Grand Total".

2) Next, let's look at our sample data:

Copied to your clipboard
1{
2 "author": "Gary Lee",
3 "Company": {
4 "Name": "Projected",
5 "Address": "19718 Mandrake Way",
6 "PhoneNumber": "+1-100000098"
7 },
8 "Invoice": {
9 "Date": "January 15, 2021",
10 "Number": 123,
11 "Items": [
12 {
13 "item": "Gloves",
14 "description": "Microwave gloves",
15 "UnitPrice": 5,
16 "Quantity": 2,
17 "Total": 10
18 },
19 {
20 "item": "Bowls",
21 "description": "Microwave bowls",
22 "UnitPrice": 10,
23 "Quantity": 2,
24 "Total": 20
25 }
26 ]
27 },
28 "Customer": {
29 "Name": "Collins Candy",
30 "Address": "315 Dunning Way",
31 "PhoneNumber": "+1-200000046",
32 "Email": "cc@abcdef.co.dw"
33 },
34 "Tax": 5,
35 "Shipping": 5,
36 "clause": {
37 "overseas": "The shipment might take 5-10 more than informed."
38 },
39 "paymentMethod": "Cash"
40}

Notice how the tokens in the Word document match up with values in our JSON. While our example will use a hard coded set of data in a file, production applications can get their data from anywhere. Now let's get into our code.

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

Copied to your clipboard
1using System.IO;
2using System;
3using System.Collections.Generic;
4using log4net.Repository;
5using log4net.Config;
6using log4net;
7using System.Reflection;
8using Adobe.PDFServicesSDK;
9using Adobe.PDFServicesSDK.auth;
10using Adobe.PDFServicesSDK.pdfops;
11using Adobe.PDFServicesSDK.io;
12using Adobe.PDFServicesSDK.exception;
13using Adobe.PDFServicesSDK.options.documentmerge;
14using Newtonsoft.Json.Linq;

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

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

5) Inside our class, we'll begin by defining our input Word, JSON and output filenames. If the output file already exists, it will be deleted:

Copied to your clipboard
1String input = "receiptTemplate.docx";
2
3String output = "/generatedReceipt.pdf";
4if(File.Exists(Directory.GetCurrentDirectory() + output))
5{
6 File.Delete(Directory.GetCurrentDirectory() + output);
7}
8
9string json = File.ReadAllText("receipt.json");
10JObject data = JObject.Parse(json);

These lines are hard coded but in a real application would typically be dynamic.

6) 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>

7) 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.

8) Now, let's create the operation:

Copied to your clipboard
1DocumentMergeOptions documentMergeOptions = new DocumentMergeOptions(data, OutputFormat.PDF);
2DocumentMergeOperation documentMergeOperation = DocumentMergeOperation.CreateNew(documentMergeOptions);
3
4// Provide an input FileRef for the operation.
5FileRef sourceFileRef = FileRef.CreateFromLocalFile(input);
6documentMergeOperation.SetInput(sourceFileRef);

This set of code defines what we're doing (a document merge operation, the SDK's way of describing Document Generation), points to our local JSON file and specifies the output is a PDF. It also points to the Word file used as a template.

9) The next code block executes the operation:

Copied to your clipboard
1// Execute the operation.
2FileRef result = documentMergeOperation.Execute(executionContext);
3
4// Save the result to the specified location.
5result.SaveAs(Directory.GetCurrentDirectory() + output);

This code runs the document generation process and then stores the result PDF document to the file system.

Example running at the command line

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

Copied to your clipboard
1using System.IO;
2using System;
3using System.Collections.Generic;
4using log4net.Repository;
5using log4net.Config;
6using log4net;
7using System.Reflection;
8using Adobe.PDFServicesSDK;
9using Adobe.PDFServicesSDK.auth;
10using Adobe.PDFServicesSDK.pdfops;
11using Adobe.PDFServicesSDK.io;
12using Adobe.PDFServicesSDK.exception;
13using Adobe.PDFServicesSDK.options.documentmerge;
14using Newtonsoft.Json.Linq;
15
16namespace GeneratePDF
17{
18 class Program
19 {
20 private static readonly ILog log = LogManager.GetLogger(typeof(Program));
21 static void Main()
22 {
23 // Configure the logging.
24 ConfigureLogging();
25 try
26 {
27
28 String input = "receiptTemplate.docx";
29
30 String output = "/generatedReceipt.pdf";
31 if(File.Exists(Directory.GetCurrentDirectory() + output))
32 {
33 File.Delete(Directory.GetCurrentDirectory() + output);
34 }
35
36 string json = File.ReadAllText("receipt.json");
37 JObject data = JObject.Parse(json);
38
39 // Initial setup, create credentials instance.
40 Credentials credentials = Credentials.ServicePrincipalCredentialsBuilder()
41 .WithClientId(Environment.GetEnvironmentVariable("PDF_SERVICES_CLIENT_ID"))
42 .WithClientSecret(Environment.GetEnvironmentVariable("PDF_SERVICES_CLIENT_SECRET"))
43 .Build();
44
45 // Create an ExecutionContext using credentials and create a new operation instance.
46 ExecutionContext executionContext = ExecutionContext.Create(credentials);
47
48 DocumentMergeOptions documentMergeOptions = new DocumentMergeOptions(data, OutputFormat.PDF);
49 DocumentMergeOperation documentMergeOperation = DocumentMergeOperation.CreateNew(documentMergeOptions);
50
51 // Provide an input FileRef for the operation.
52 FileRef sourceFileRef = FileRef.CreateFromLocalFile(input);
53 documentMergeOperation.SetInput(sourceFileRef);
54
55 // Execute the operation.
56 FileRef result = documentMergeOperation.Execute(executionContext);
57
58 // Save the result to the specified location.
59 result.SaveAs(Directory.GetCurrentDirectory() + output);
60
61 Console.Write("All Done.\n");
62
63
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.