Accessibility Support for DOCX to PDF Document Conversion Service Issue Key Features Accessible Document Formats: Support for conversion between DOCX to PDFPreservation of accessibility features during conversion. Alternative Text for Images: Inclusion of alternative text descriptions for images in the converted documents. Tagged PDF: Creation of tagged PDFs that support screen readers and other assistive technologies. ResolutionTo convert a DOCX to an accessible PDF, follow these prerequisites to ensure the output is accessible: 1. Accessible Input File: Ensure the input DOCX file is accessible. An accessible DOCX is necessary to produce an accessible PDF. 2. Enable Accessibility Properties: Set the following property: - 'com.snc.document.conversion.accessibility_enabled' (Boolean) to 'true'. 3. API Call for Conversion: Use the following script to convert an accessible DOCX to an accessible PDF: var mymap = new Object(); mymap["user_accessibility"] = "true"; var conversionResp = new sn_docviewer.DocumentConversionOnDemand().convertToPDFV2('<sys-id>', '<O/P file_name>', mymap); gs.info(JSON.stringify(conversionResp));