使用 Javascript 进行图像注释(突出显示图像的部分、擦除图像)
我们正在开发一个应用程序,希望用户对图像进行注释。我所说的注释是指突出显示图像部分的能力。一旦图像被突出显示,并单击“提交”,突出显示的属性(颜色、突出显示的区域)将被提交到服务器以存储在数据库中。
使用javascript可以实现这一点吗?
We are working on an application and would like users to annotate an image. By annotation I mean, the ability to highlight parts of an image. Once the image is highlighted, and submit is clicked, the highlighted attributes (color, area highlighted) are submitted to the server to be stored in database.
Is this possible using javascript?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的。您必须将注释信息与图像分开存储,然后当您想再次查看它们时将注释覆盖在图像元素上。您还必须编写自己的 javascript 用户界面来选择颜色、绘图区域等。
yes. you'll have to store the annotation information separately from the image and then overlay the annotations on the image element when you want to view them again. you'll also have to write your own javascript user interface for selecting colors, drawing regions, etc.