Make a screen shot using MATLAB and java.awt.Robot
이전 댓글 표시
I want to make a screenshot using function createScreenCapture in java.awt.Robot. I can use java.awt.Robot for mouse and keyboard control. How can I use java.awt.Robot for make a screenshot? Or maybe there is something else?
P.S. Matlab give next answer:
import java.awt.Robot; vks = Robot; s_size = get(0, 'screensize'); Buffer=vks.createScreenCapture(s_size);
No method 'createScreenCapture' with matching signature found for class 'java.awt.Robot'.
Error in mouse_drive (line 7) Buffer=vks.createScreenCapture(s_size);
답변 (1개)
Jan
2014년 12월 29일
2 개 추천
As usual such standard operations have been published in the FileExchange already. Searching there will offer solutions like these:
- http://www.mathworks.com/matlabcentral/fileexchange/31383-screenshotrgb--make-a-screenshot-using-robot-java-class
- http://www.mathworks.com/matlabcentral/fileexchange/11363-screencapture
- http://www.mathworks.com/matlabcentral/fileexchange/34960-multiple-monitors-screen-capture
- http://www.mathworks.com/matlabcentral/fileexchange/24323-screencapture-get-a-screen-capture-of-a-figure-frame-or-component
카테고리
도움말 센터 및 File Exchange에서 Sparse Matrices에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!