raspi2png
raspi2png
是 Andrew Duncan 開發的小工具,可以透過 vc_dispmanx_snapshot 擷取畫面。
首先安裝 png 函式庫:
sudo apt-get install libpng12-dev
從 GitHub 下載 raspi2png
的原始碼:
git clone https://github.com/AndrewFromMelbourne/raspi2png.git
編譯 raspi2png
:
cd raspi2png make
編譯完成後,會產生 raspi2png
這個可執行檔,直接執行它就可以擷取目前的畫面:
./raspi2png
raspi2png
指令可用的參數有:
--pngname <name>
:指定輸出的 png 檔名,預設為snapshot.png
。--height <height>
:指定圖片高度,預設為螢幕畫面高度。--width <width>
:指定圖片寬度,預設為螢幕畫面寬度。--delay <delay>
:指定延遲秒數,預設為0
秒。--stdout
:輸出至標準輸出(stdout
)。--help
:顯示說明訊息。
留言