腳本截屏
『壹』 腳本精靈怎麼用來截圖 腳本精靈截圖功能使用教程
腳本精靈是一款模擬手機觸摸和按鍵的工具,工具中自帶截圖功能,腳本精靈怎麼用來截圖?如果你也遇到了這個問題就一起來參考腳本精靈截圖功能使用教程。
腳本精靈怎麼用來截圖
腳本精靈截圖功能使用教程
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;
}