脚本截屏
‘壹’ 脚本精灵怎么用来截图 脚本精灵截图功能使用教程
脚本精灵是一款模拟手机触摸和按键的工具,工具中自带截图功能,脚本精灵怎么用来截图?如果你也遇到了这个问题就一起来参考脚本精灵截图功能使用教程。
脚本精灵怎么用来截图
脚本精灵截图功能使用教程
1、下载安装脚本精灵2.07,并正确授于root。(3.0X以上目前全属于测试版,请勿用于正常操作)
2、打开脚本精灵,从脚本精灵列表中任意载入一个脚本,此时脚本精灵会自动缩成小横条,如下图所示
3、点击脚本精灵小横条的第二个按钮,此时脚本精灵小横条会变成两行的,如下图所示
4、第二行倒数第二个按钮便是截图按钮了,需要截图的地方点击它,图片会自动保存到SD卡下的ScriptElf/image
5、对于使用脚本精灵截图黑屏或不正常的,请到脚本精灵--设置--程序配置--性能设置--设备兼容模式打勾即可,然后按照4操作截图。如下图
6、然后将SD卡下的ScriptElf/image文件夹打成包(压缩包)就可以了。
脚本精灵怎么用来截图?脚本精灵截图功能使用教程就为大家介绍到这里,更多软件教程欢迎关注。
‘贰’ python excel 截图 脚本
from win32com.client import Dispatch, DispatchEx
import pythoncom
from PIL import ImageGrab, Image
import uuid
def excel_catch_screen(filename, sheetname, screen_area, img_name=False):
""" 对excel的表格空岁区域进行截拍毁图——用例:excel_catch_screen(ur"D:Desktop123.xlsx", "Sheet1", "A1:J10")"""
pythoncom.CoInitialize() # excel多线程袭亏备相关
if name == ' main ':
excel_catch_screen(r"C:UsershuangatDownloads2019-04-08_2019-04-21_yunying.xlsx", "Sheet", "A1:J6")
‘叁’ 求屏幕定时截屏并保存图像程序.bat
复制粘贴到记事本,另存为xx.bat,编码选ANSI
<#:
cls
@echooff
rem整点自动截屏
modeconcols=40lines=8
if"%~1"equ""(
start/min"""%~f0"fk
exit
)
cd/d"%~dp0"
powershell-sta-NoProfile-ExecutionPolicybypass"Invoke-Command-ScriptBlock([ScriptBlock]::Create([IO.File]::ReadAllText('%~f0',[Text.Encoding]::Default)))"
pause
exit
#>
#截屏图片存放的目录
$folder="C:ScreenShot";
if(-not(test-path-liter$folder)){[void](md$folder)};
$codes=@'
usingSystem.Drawing;
usingSystem.Drawing.Imaging;
usingSystem.Windows.Forms;
publicstaticclassScreenShot{
publicstaticvoidSave(stringf){
Imageimg=newBitmap(Screen.AllScreens[0].Bounds.Width,Screen.AllScreens[0].Bounds.Height);
Graphicsg=Graphics.FromImage(img);
g.CopyFromScreen(newPoint(0,0),newPoint(0,0),Screen.AllScreens[0].Bounds.Size);
img.Save(f,ImageFormat.Bmp);
}
}
'@;
Add-Type-TypeDefinition$codes-ReferencedAssemblies'System.Windows.Forms','System.Drawing';
$n=0;while($true){
cls
$now=(get-date).toString('yyyy-MM-ddHH:mm:ss');
write-host'Keepthiswindowminimized';
write-host'Donotclosethiswindow';
write-host$n.toString();write-host$now;
$m=[regex]::match($now,'00:0[0-9]$');
if($m.Success){
$newfile=$folder.trimend('')+''+($now-replace'[-s:]|dd$','')+'00.bmp';
if(-not(test-path-liter$newfile)){$n++;[ScreenShot]::Save($newfile);};
};
start-sleep-Seconds1;
}