首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >是否可以从Silverlight深度缩放站点导出高分辨率图像?

是否可以从Silverlight深度缩放站点导出高分辨率图像?
EN

Stack Overflow用户
提问于 2015-02-17 08:42:56
回答 1查看 16关注 0票数 0

我想要下载整个图片,或者至少从这里下载一大部分,现在我正在http://www.xrez.com/yose_proj/yose_deepzoom/index.html中放大,截屏和拼贴回来,这是永远花费的时间。有没有更简单的方法?

谢谢。

EN

回答 1

Stack Overflow用户

发布于 2015-02-28 08:40:58

最后,我编写了一个glovepie脚本来自动移动鼠标,然后只讲屏幕截图,并使用photoshops的photomerge功能将它们放在一起。它工作正常。下面是glovepie脚本

代码语言:javascript
复制
// script to press and drag mouse
if  (Key.Left) {
debug = "start"
      mouse.X -= .8
      mouse.LeftButton = true
      mouse.X += .8
      wait 1 seconds
      mouse.LeftButton = false
debug = "released"
}

if  (Key.Right) {
debug = "start"
      mouse.X += .8
      mouse.LeftButton = true
      mouse.X -= .8
      wait 1 seconds
      mouse.LeftButton = false
debug = "released"
}

if  (Key.Up) {
debug = "start with the mouse near the bottom of the screen"
      mouse.Y -= .8
      mouse.LeftButton = true
      mouse.Y += .8
      wait 1 seconds
      mouse.LeftButton = false
debug = "released"
}

if  (Key.Down) {
debug = "start with the mouse near the top of the screen"
      mouse.Y += .8
      mouse.LeftButton = true
      mouse.Y -= .8
      wait 1 seconds
      mouse.LeftButton = false
debug = "released"
}

下载glovepie (geat工具)从这里http://glovepie.org/glovepie_download.php点击“我已经有100%绿色电力,我准备下载GlovePIE”按钮。是的,这听起来很奇怪,但它确实有效

票数 -1
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/28552862

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档