Converting PDF document to PDF/A1b using the Muhimbi PDF Converter Web Service

As Muhimbi’s range of PDF Conversion products, including the PDF Converter for SharePoint and the PDF Converter Services, now provide the ability to post process any converted document for output in PDF/A format, one obvious use for this brilliant new functionality is to convert regular PDF files to PDF/A format.

In this post we’ll provide a simple .NET sample that invokes our Web Services interface to carry out the conversion from PDF to PDF/A1b. The code is nearly identical to the code to convert and watermark a simple MS-Word file with the following exceptions. You can apply the same changes to the Java sample to make it do the same using that language.

  1. openOptions.FileExtension is set to pdf.
  2. conversionSettings.PDFProfile is set to PDFProfile.PDF_A1B.
  3. converstionSettings.OutputFormatSpecificSettings is set to an instance of OutputFormatSpecificSettings_PDF with the PostProcessFile property set to True.
  4. The client.ProcessChanges() method is invoked rather than client.Convert().
  5. All references to watermarks have been removed as they are not part of this sample.

Some minor clean-up has been carried out as well to make the code even shorter. After running the example the resulting file validates perfectly according to Acrobat X Pro.

PDFA Check

Sample Code

Listed below is sample code to convert PDF to PDF/A. You can either copy the code from this blog post, download the Visual Studio Project or open the project from the Sample Code folder in the Windows Start Menu.

The sample code expects the path of the PDF file on the command line. If the path is omitted then the first PDF file found in the current directory will be used.

  1. Download and install the Muhimbi PDF Converter Services or PDF Converter for SharePoint.

  2. Install the prerequisites as described here. There is no need to make any changes to the configuration file.

  3. Create a new Visual Studio C# Console application named PDFA_Conversion.

  4. Add a Service Reference to the following URL and specify ConversionService as the namespace

    http://localhost:41734/Muhimbi.DocumentConverter.WebService/?wsdl

  5. Paste the following code into Program.cs.

binding.ReceiveTimeout = TimeSpan.FromMinutes(30);

// ** Set the maximum document size to 50MB

binding.MaxReceivedMessageSize = 50 * 1024 * 1024;

binding.ReaderQuotas.MaxArrayLength = 50 * 1024 * 1024;

binding.ReaderQuotas.MaxStringContentLength = 50 * 1024 * 1024;

// ** Specify an identity (any identity) in order to get it past .net3.5 sp1

EndpointIdentity epi = EndpointIdentity.CreateUpnIdentity("unknown");

EndpointAddress epa = new EndpointAddress(new Uri(address), epi);

client = new DocumentConverterServiceClient(binding, epa);

client.Open();

return client;

}

catch (Exception)

{

CloseService(client);

throw;

}

}

/// <summary>

/// Check if the client is open and then close it.

/// </summary>

/// <param name="client">The client to close</param>

public static void CloseService(DocumentConverterServiceClient client)

{

if (client != null && client.State == CommunicationState.Opened)

client.Close();

}

}

}

Have a Question?
We’re Always Happy to Help.

© Muhimbi Ltd. 2008 - 2023
This website uses cookies to ensure you get the best experience. Learn more