On language, HTML, ethics and crediting copyright images
My need: publish content which includes copyrighted images, where the image terms of use requires me to include credit to the copyright owner.
But I couldn’t find a standard HTML / CSS representation for this concept – associating a credit with an image (or any other resource).
Perhaps, much like language may shape thought, standard HTML have a role in shaping the ethics of the web?
The closest standard I’ve run into is rel=license, as documented by the microformat folks:
<a href="http://creativecommons.org/licenses/by/2.0/" rel="license">cc by 2.0</a>
However, as specified in the issues list for rel=license, it is a page-wide mechanism – it does not cover the use case where the license is associated with part of a page, such as an image or embedded object in the page, or a single news entry on a news page.
So unless there is already a standard of common practice for this, I will need to define my own representation for this.
The data needed for this is:
- The image (or, more generically, the resource)
- The credit text
- Optionally, a link as required by the copyright owner
<img name="image1" src="image1.jpg"> <a idref="#image1" href="http://www.gettyimages.com/" rel="attribution">Image copyrighted (c) by Getty Images</a>
If the same copyright message applies to multiple images, idrefs can be used instead of idref.
Any thoughts on this?
If you know of standard representation for this use case that I may have missed, please let me know through a comment.
You can follow any responses to this entry through the RSS 2.0 feed. You can leave a response, or trackback from your own site.

January 21st, 2009 at 3:27 pm
Is there a standard or common convention for including an attribution to the copyright owner on an image in HTML?…
January 21st, 2009 at 3:32 pm
There is a whole section about License Meta Data in the Creative Commons website.
To get you started:
http://wiki.creativecommons.org/Embedded_Metadata
http://wiki.creativecommons.org/Developer
Hope this helps….
January 21st, 2009 at 3:35 pm
Niv,
Thanks for the pointers.
http://wiki.creativecommons.org/Embedded_Metadata deals with embedding the licensing info directly in the resource file. It does not deal with semantically expressing this relationship in HTML.
Meaning, given a…
January 25th, 2009 at 1:52 pm
[...] On language, HTML, ethics and crediting copyright images [...]