GWT中有什么方法可以获取页面区域的屏幕截图吗?
我正在使用 GWT。我有一组可拖动的小部件,可以根据用户的需要放置在页面上。我需要获取页面区域屏幕截图作为某些事件的处理程序并保存它。有什么办法可以做到这一点吗?
是否可以在 GWT 中以图像形式获取 Widget 视图?
I am using GWT. I have a set of dragable widgets that can be placed on page as user wants. I need to get page region screenshot as a handler of some event and save it. Is any way to do this?
Is it possible to get Widget view as an image in GWT?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您必须创建小程序才能获取屏幕截图。您可以将该小程序嵌入到您的 GWT 应用程序中/
You will have to create applet to get screenshots. You can embed the applet in your GWT application/
不,抱歉。出于安全原因,您无法在任何浏览器中获取任何页面区域的屏幕截图。
有一个例外,
drawWindow
,它不是 GWT 的一部分,而是 HTML5 Canvas 的一部分,并且只能在 Firefox 中运行,并且只能在本地运行(不允许在普通网页上运行)。No. Sorry. You cannot get a screenshot of any page region in any browser, for security reasons.
There is one exception,
drawWindow
which is not part of GWT but part of HTML5 Canvas and only works in firefox, and only locally (not allowed to run on normal webpages).