我想要下载整个图片,或者至少从这里下载一大部分,现在我正在http://www.xrez.com/yose_proj/yose_deepzoom/index.html中放大,截屏和拼贴回来,这是永远花费的时间。有没有更简单的方法?
谢谢。
发布于 2015-02-28 08:40:58
最后,我编写了一个glovepie脚本来自动移动鼠标,然后只讲屏幕截图,并使用photoshops的photomerge功能将它们放在一起。它工作正常。下面是glovepie脚本
// 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”按钮。是的,这听起来很奇怪,但它确实有效
https://stackoverflow.com/questions/28552862
复制相似问题