jQuery 插件可以做到这一点吗?
是否有 jQuery 插件允许这样做?
Is there a jQuery plugin that allows this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
是否有 jQuery 插件允许这样做?
Is there a jQuery plugin that allows this?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
您可以使用“标签”插件来做类似的事情吗?
http://www.jpictag.com/demos/edition
或
http://djpate.com/2011/01/14/jtag-a-jquery-plugin-to-tag-pictures-more/
You could use a "tag" plugin to do something similar?
http://www.jpictag.com/demos/edition
Or
http://djpate.com/2011/01/14/jtag-a-jquery-plugin-to-tag-pictures-more/
您付出了相当多的努力(以及 CPU 能力和思想),但收获甚微。它本质上涉及创建您自己的 javascript / jquery 插件。
但如果您仍然想继续这样做,则需要将图像加载到画布元素上,使用 getImageData 提取其数据,然后使用一些非常先进的 OCR 技巧来找出图像的位置和位置。这些字母是什么。
如果您有时间,这绝对是可能的 - John Resig 分析了 Greasemonkey使用此技术(以及神经网络)来解决验证码的脚本在这里。
You're looking at quite a bit of effort (and cpu power and thought) for very little gain. It essentially involves creating your own bit of javascript / jquery plugin.
But if you still wanted to go about doing it, you're going to need to load an image onto a canvas element, pull in its data using getImageData, and then use some pretty advanced OCR trickery to figure out where & what these letters are.
It's definitely possible if you've got the time - John Resig analyses a Greasemonkey script that used this technique (along with Neural Networks) to solve captchas here.