Skip to content

Technique PDF1:Applying text alternatives to images with the Alt entry in PDF documents

Applicability

Tagged PDF documents with images

This technique relates to 1.1.1: Non-text Content (Sufficient).

Description

The objective of this technique is to provide text alternatives for images via an /Alt entry in the property list for a Tag. This is normally accomplished using a tool for authoring PDF.

PDF documents may be enhanced by providing alternative descriptions for images, formulas, and other items that do not translate naturally into text. In fact, such text alternatives are required for accessibility: alternate descriptions are human-readable text that can be vocalized by text-to-speech technology for the benefit of users with vision disabilities.

When an image contains words that are important to understanding the content, the text alternative should include those words. This will allow the alternative to accurately represent the image. Note that it does not necessarily describe the visual characteristics of the image itself but must convey the same meaning as the image.

Examples

Example 1: Adding alt text to an image in Adobe Acrobat DC Pro

This example is shown with Adobe Acrobat Pro. There are other software tools that perform similar functions.

  1. Open the Accessibility panel via the Tools → Accessibility options.
  2. Select the image in the document and select the "Set Alternative Text" option in the Accessibility tools panel.
  3. In the Set Alternative Text dialog that appears, type in your alternative text, then press the Save & Close button.

    Acrobat's Set Alternate Text dialog, containing some alt text, next to an image in a PDF. Acrobat's Set Alternate Text dialog, containing some alt text, next to an image in a PDF.

This example is shown in operation in the working example of Adding an /Alt entry to an image.

Example 2: Adding alt text to an image in Microsoft Word

  1. Right-click on the image and choose View Alt Text
  2. Type the alternative text into the text box provided.
Word's Alt Text interface being used to add alt text to a photograph of a dog. Word's Alt Text interface being used to add alt text to a photograph of a dog.

Example 3: Adding alt text to an image in OpenOffice with the Writer add-on

This example is shown with Open Office Writer. There are other software tools that perform similar functions.

  1. Select "Insert" then "picture", select the image to be inserted
  2. Right click on the mouse
  3. Select "Description"
    the menu for editing images
  4. Enter a text title and a good text description
    the menu for adding alt text to an image
  5. Click OK.

Example 4: Adding a text alternative to an image in a PDF document using an /Alt entry

The /Alt property used on an image of mountains with a moon and trees typically would be used like this (typically accomplished by an authoring tool):

/Figure <</Alt (Sketch of Mountains with moon rising over trees)>>

The image might also be represented by a tag with a different name. A different name might be used because the tag name is written in a language other than English or because a specific tool uses a different name for some other reason. In this situation, it is also necessary that the RoleMap contained within the StructTreeRoot for the PDF document contain an entry which explicitly maps the name of the tag used for the image with the standard structure type used in PDF documents (in this case, Figure). If the RoleMap contains only an entry mapping Shape tags to Figure tags, the rolemap information would appear as follows:

/RoleMap << /Shape /Figure >>

In this case, the usage of the /Alt entry as follows would also be correct:

/Shape <</Alt (Crater Lake in the summer, with the blue sky, clouds and
 crater walls perfectly reflected in the lake) >>

Note that the /Alt entry in property lists can be combined with other entries.

Other sources

No endorsement implied.

Tests

Procedure

For all images which need equivalents:

  1. Verify the images have /Alt entries on an enclosing tag by one of the following:

    • Read the PDF document with a screen reader, listening to hear that the equivalent text is read when tabbing to the non-text object (if it is tabbable) or hearing the alternative text read when reading the content line-by-line.
    • Using a PDF editor, check that a text alternative is displayed for each image.
    • Use a tool which is capable of showing the /Alt entry value, such as aDesigner, to open the PDF document and view the GUI summary to read the text alternatives for images.
    • Use a tool that exposes the document through the accessibility API and verify that images have required text equivalents.

Expected Results

  • Check 1 is true.
Back to Top