Do you support accessibility on the generated pdf

We want to understand if the generated pdf by group docs meets WCAG 2.0 AA standards. Is there any Accessibility Conformance Report readily available, so that we could understand the missing accessibility compliance related items. Thanks

@amitdash
We have opened the following new ticket(s) in our internal issue tracking system and will deliver their fixes according to the terms mentioned in Free Support Policies.

Issue ID(s): TOTALNET-69

You can obtain Paid Support Services if you need support on a priority basis, along with the direct access to our Paid Support management team.

@amitdash

Could you please share more details about which GroupDocs API you are using for generating PDFs, or provide more information about your workflow?

This will allow us to provide more accurate guidance regarding your question.

Thanks.

hi,
We want to use groupdocs conversion sdk for converting docx/html to pdf

@amitdash

To better assist you, could you clarify which option you intend to use: the SDK for our GroupDocs.Conversion Cloud RESTful API (and if so, which programming language do you prefer)
or the downloadable API for .NET, Java, or Node.js?
This way, we can provide the most relevant information specific to your needs.

Thanks.

We are going to use this Jar https://releases.groupdocs.com/java/repo/com/groupdocs/groupdocs-total/24.3/groupdocs-total-24.3.jar

Groupdocs.Total for java

@amitdash

Thank you for the details. I appreciate your patience and just need to clarify a few details with our developers to provide you with the most accurate answer. Rest assured, I will get back to you promptly as soon as I have the necessary information.

@amitdash

You can convert a DOCX file into PDF document and choose different conformance levels using PdfFormats enumeration.

Please check the code snippet below:

import com.groupdocs.conversion.Converter;
import com.groupdocs.conversion.options.convert.PdfConvertOptions;
import com.groupdocs.conversion.options.convert.PdfFormats;
import java.io.File;
...

String convertedFile = "D:\\HelloWorld.pdf";
Converter converter = new Converter("D:\\sample.docx");

PdfConvertOptions convertOptions = new PdfConvertOptions();
convertOptions.getPdfOptions().setPdfFormat(PdfFormats.PdfA_2A);

converter.convert(convertedFile, convertOptions);

System.out.print("\nSource document converted successfully.\nCheck output in " + convertedFile);

Please let us know if it’s what you need.