0
我使用VPython從計算機模擬中可視化一些數據。 我想從VPython輸出中製作電影。因此我試圖從vpython輸出窗口製作截圖。我想以全屏模式捕捉輸出窗口。這樣我不需要裁剪窗框。我嘗試過ImageGrab.grab()(see here)和win32gui(see here),但這兩種方法都捕獲桌面而不是全屏窗口。如何從全屏(!)VPython窗口捕獲屏幕?
方法screenshot
和_get_windows_bytitle
from here
windowtitle = 'sometitlename'
newscene = display(fullscreen=True,title=windowtitle)
newscene.cursor.visible=false
newscene.select()
b = box()
rate(1)
screenshot(_get_windows_bytitle(windowtitle)[0])
同樣的問題ImageGrab.grab
。有什麼建議麼?