简体   繁体   English

图片标记并添加多个链接

[英]image tagging and add multiple link

I doing image processing project in php.I want to know about tagging.The facebook and orkut user can add link into different co-ordinate on a single image.i was try to implement using javascript,php and How to add multiple link on a single image. 我在php中进行图像处理项目。我想了解有关标记的信息。facebook和orkut用户可以将链接添加到单个图像的不同坐标中。我曾尝试使用javascript,php和如何在a上添加多个链接来实现单张图片。 please help me any one 请任何人帮助我

You can use a simple tag map : 您可以使用一个简单的标签图

here is the text from that link: 这是该链接的文字:

<img src="planets.gif" width="145" height="126" alt="Planets" usemap="#planetmap" />

<map name="planetmap">
  <area shape="rect" coords="0,0,82,126" href="sun.htm" alt="Sun" />
  <area shape="circle" coords="90,58,3" href="mercur.htm" alt="Mercury" />
  <area shape="circle" coords="124,58,8" href="venus.htm" alt="Venus" />
</map>

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM