是否可以从Silverlight deepzoom网站导出高分辨率图像?

时间:2015-02-17 00:42:56

标签: silverlight photoshop

我想从这里下载整个图像,或者至少下载很大一部分图像 http://www.xrez.com/yose_proj/yose_deepzoom/index.html 现在我正在放大镜头,在Photoshop中将屏幕截图和拼贴在一起,这是永远的。有更简单的方法吗?

感谢。

1 个答案:

答案 0 :(得分:-1)

我最终拧干了一个手套脚本来自动移动鼠标,然后只是谈论屏幕截图并使用photoshops photomerge功能来实现。它工作正常。这是手套剧本

// 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 tool)http://glovepie.org/glovepie_download.php 点击"我已经拥有100%绿色电源,我已经准备好下载GlovePIE"按钮。是的,它听起来很奇怪,但确实有效