How do I take a screenshot using MATLAB?

207 ビュー (過去 30 日間)
MathWorks Support Team
MathWorks Support Team 2017 年 10 月 11 日
編集済み: MathWorks Support Team 2022 年 7 月 1 日
Is there a way that I could use MATLAB the same way that I use software such as snipping tool or print screen? For example, I would like to run a code and save an image from a rectangular box on the screen. Is this possible?

採用された回答

MathWorks Support Team
MathWorks Support Team 2021 年 6 月 30 日
編集済み: MathWorks Support Team 2021 年 6 月 30 日
This is possible to do in MATLAB by using Java libraries.
% Take screen capture
robot = java.awt.Robot();
pos = [0 0 400 400]; % [left top width height]
rect = java.awt.Rectangle(pos(1),pos(2),pos(3),pos(4));
cap = robot.createScreenCapture(rect);
% Convert to an RGB image
rgb = typecast(cap.getRGB(0,0,cap.getWidth,cap.getHeight,[],0,cap.getWidth),'uint8');
imgData = zeros(cap.getHeight,cap.getWidth,3,'uint8');
imgData(:,:,1) = reshape(rgb(3:4:end),cap.getWidth,[])';
imgData(:,:,2) = reshape(rgb(2:4:end),cap.getWidth,[])';
imgData(:,:,3) = reshape(rgb(1:4:end),cap.getWidth,[])';
% Show or save to file
imshow(imgData)
imwrite(imgData,'out.png')
Note: If you are looking to take a screenshot of a figure window, there are many other tools that are much better suited for this, for example the "print" and "getframe" functions, as well as several featured submissions to File Exchange such as "ScreenCapture" or "export_fig".
  1 件のコメント
Yair Altman
Yair Altman 2017 年 10 月 22 日
編集済み: MathWorks Support Team 2022 年 7 月 1 日
export_fig: https://www.mathworks.com/matlabcentral/fileexchange/23629-export_fig

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangePrinting and Saving についてさらに検索

タグ

製品


リリース

R2017a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by