如何在.net中制作类似epaper(在线报纸)的应用程序
假设我有报纸首页的完整图像,我希望它制作 asp.net 或 winform 应用程序,以便用户可以切片此页面,然后将此页面链接到另一个图像...
我很困惑我应该从哪里开始做什么这不是我的报纸应用程序,它的大学项目,但它的工作原理与此图像相同......
为了清楚理解,这里是站点链接,例如。 http://epaper.dawn.com
您能否提供此解决方案的一些参考链接、示例项目或博客。
Let say I have complete Image of Newspaper front page i want it make asp.net or winform application so user can slice this page and then link this page to another image...
I am confused what should i do from where should I start although this is not my newspaper application its university project but it works same like this images....
For clear understanding here is site link eg. http://epaper.dawn.com
can you give some reference links, sample project or blogs for this solution.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以让用户在内容区域上绘制矩形并为它们分配标签或链接,然后将这些矩形作为键存储在字典中,关联的值是分配的标签或超链接。
然后,当用户移动鼠标或单击某处时,检查所有矩形以查看鼠标是否在其中任何一个内部,并找到关联的项目(无论是标签还是超链接)
这只是一个大概的想法,希望它有所帮助。
但我不确定这是图像处理,因为实际上用户正在切割报纸,而不是计算机。
You could have the user draw rectangles over content areas and assign them a label or link, then you would store these rectangles as keys in a dictionary, with the associated value being the assigned label or hyperlink.
Then when the user moves the mouse or clicks somewhere, check all of the rectangles to see if the mouse is inside any of them, and find the associated item (be it a label or hyperlink)
That's just a ballpark idea, hope it helps.
I'm not sure this is image processing though, as really the user is slicing the newspaper up, not the computer.