accessible images

22
Accessible Images Wendy Chisholm Matt May Universal Design for Web Applications

Upload: wendy-chisholm

Post on 11-Jun-2015

481 views

Category:

Technology


1 download

TRANSCRIPT

Page 1: Accessible Images

Accessible Images

Wendy ChisholmMatt May

Universal Design for Web Applications

Page 2: Accessible Images

Perceivable

Operable

Understandable

Robust

Page 3: Accessible Images

Perceivable

Page 4: Accessible Images

Perceivable: Overview

Provide function of visual content “alt-text” Captions Transcripts Audio Descriptions

Color contrast

Page 5: Accessible Images

Text Alternatives for Images

• One of the most common mistakes

• One of the easiest to fix

• Many ways to test

• Should replace purpose of the image

• Or if not needed for understanding, “hide” it

• Links are interesting cases

Page 6: Accessible Images

WebAnywherehttp://webanywhere.cs.washington.edu/beta/

Page 7: Accessible Images

<img alt=”UMBC An Honors University in Maryland” />

Suggested

Page 8: Accessible Images

Expected alt-text?

Page 9: Accessible Images
Page 10: Accessible Images

<img alt=”College of Science, Health & Engineering” />

Suggested

Previous screen shot used Firefox Dev Toolbar: https://addons.mozilla.org/en-US/firefox/addon/60

Page 11: Accessible Images

<a href=“...”> Print Friendly Page <img src=“.../images/print.gif” alt=“??”></a>

Suggested alt?

Page 12: Accessible Images

<a href=“...”> Print Friendly Page <img src=“.../images/print.gif” alt=“”></a>

Suggested: null alt-text

Page 13: Accessible Images

Suggestions?

<img src=“images/templates/spacer.gif” width=“200” height=“10” alt=“Spacer images. (Decorative Element)”/>

Page 14: Accessible Images

Suggested

1. Use CSS for layout

2. alt=“” (null alt-text)

Page 15: Accessible Images

Suggestions for the arrow?

Page 16: Accessible Images

Currently<tr> <td width="10" valign="top"> <img src="..." width="7" height="9"> </td> <td valign="top"> <a href="...">B.S. Mathematics</a> </td></tr>

Page 17: Accessible Images

What’s going on here?

Page 18: Accessible Images

<p> <img height=“497” width=“626” src=“words_per_book.jpg”></p>

Page 19: Accessible Images

Not just for HTML

Page 20: Accessible Images

In Acrobat

Page 21: Accessible Images

Suggested

1. Avoid images of text. (please please please)

2. Break into multiple images and text.

3. alt-text for each book cover should be the title of the book

Page 22: Accessible Images

Summary

• If it contributes, give it a text equivalent.

• If it doesn’t, include it via css or null alt-text.

• If it’s an image of words, alt-text=words.

• If it’s a link or button, alt-text=function.

• If it’s in a text link, alt-text=null alt-text.

• Avoid redundancy where possible.

• Avoid images of text (please please please!)

• True for file formats (PDF, Powerpoint, etc)