加入我们,或者,欢迎回来。
您需要 登录 才可以下载或查看,没有帐号?注册会员
x
为了方(zhuang)便(bi),弄了个动态链接库(dll)来处理RM的截图……
def ScreenShot(filename) f = Win32API.new("ScreenShot.dll", "ScreenShot", "p", "l") return f.call(filename); end
def ScreenShot(filename)
f = Win32API.new("ScreenShot.dll", "ScreenShot", "p", "l")
return f.call(filename);
end
ScreenShot.rar
(17.51 KB, 下载次数: 84)
具体用法:
将上述脚本插入至main前;将附件中的dll文件放置在游戏目录下。
然后在你觉得需要截图的时候使用代码
其中filename是生成的图片文件的名字
跋:由于偷懒以及只会生成bmp位图,生成的位图如果很多会稍微占一些空间。有时间弄个生成png版本的,当然前提是要有时间…… |