如何在Google图片中为我的网站设置图片许可?

时间:2014-03-26 09:14:36

标签: microformats google-image-search

Google图片可以选择根据许可证过滤图像。

License filter screenshot

我网站上的每个图片都有一个详细信息页面,我在其中有以下链接来表示许可证:

<a rel="license" href="http://creativecommons.org/licenses/by/4.0/deed.en_US" target="_blank">CC-BY</a>

它是Creative Commons - Choose a License的示例代码的修改版本。

但是,当我选择许可过滤器时,我看到自我添加此代码以来Google已编入索引的图片。

1 个答案:

答案 0 :(得分:5)

你需要将它包含在带有about属性的div中。以下是Google提供的示例:

<div about="image.jpg">
  <img src="image.jpg" alt="" />
  <a rel="license" href="http://creativecommons.org/licenses/by-sa/3.0/">Creative Commons Attribution Share-Alike 3.0</a>
</div>

所以在你的情况下:

<div about="image.jpg">
  <img src="image.jpg" alt="" />
  <a rel="license" href="http://creativecommons.org/licenses/by/4.0/deed.en_US" target="_blank">CC-BY</a>
</div>

来源:https://www.youtube.com/watch?v=quyhasVn2jwhttp://googlesystem.blogspot.com/2009/08/simple-way-to-specify-image-licenses.html